原本页面中有一 iframe:
<iframe id="ifControl" style="width: 100%;" frameborder="0" height="700px" scrolling="no"></iframe>
通过js赋src的值:window.frames["ifControl"].location.href=“”;
这样写IE下是正常的,但在火狐下不显示。。
解决办法:
<iframe id="ifControl" name="ifControl" style="width: 100%;" frameborder="0" height="700px" scrolling="no"></iframe>把iframe的id,name都赋值。。
另外:<script>parent.window.location="url"</script>在IE和火狐下通用。
<script>parent.window.location.href("url")</script>在火狐下无效。。