在用iframe的时候,用一些场景,比如先将iframe中的页面切换之后,才能进行一些操作,这些操作是针对切换后页面的,这个时候就比较恶心了,因为iframe切换页面的时刻,是在当前页面中的所有js执行完之后,浏览器才根据新的地址location进行请求新切换的页面,所以导致出现错误。 示例: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript">
function test()
{
alert('11');
i1.location="3.html";
alert('22');
alert('33');
}
</script>
</head>
<body>
<iframe id="i1" name="i1" src="2.html" height="400" width="400" ></iframe>
<input type="button" value="切换" onclick="test()" />
</body>
</html>
上面js过程,等到弹出33之后,i1这个iframe才进行请求到3.html。