在loadcomplete事件中检测iframe?

时间:2010-12-24 08:28:47

标签: javascript iframe httprequest

我有一个包含iFrame的aspx页面。 iFrame在线加载URL,然后在线URL将自动重定向到另一个在线页面。我想要实现的是确保iFrame加载了其中的所有内容,然后使用代码后面的Response.Redirect()将用户重定向到我网站上的另一个页面。

我正在寻找的是这样的:

iframe1.onloadcomplete = function(){
  //redirect here
};

1 个答案:

答案 0 :(得分:1)

使用它:

iframe1.onload = function(){
  //redirect here
};