关于mozilla弹出问题的iframe

时间:2014-02-17 17:32:14

标签: javascript html iframe mozilla

当我调用iframe时,弹出窗口有问题。

这是一张图片:

Picture of Mozilla popup

我不想得到这个弹出窗口。

这是我的剧本:

function readfile() { 
alert(document.getElementById('iframe').contentDocument.body.firstChild.innerHTML);

这是来自文字链接的电话:

<li><a href="e90_data/sasija/prazno.txt" style="text-decoration: none" target="iframe_a">Prazno</a></li>

这是页面末尾的iframe:

<iframe id='iframe' name="iframe_a" src = 'demo_iframe.htm' est.align="top" width=900px height=550px > <p>Vas browser ne podrzava IFRAME!.</p> </iframe>

在Chrome上,它显示正常,没有弹出窗口。

1 个答案:

答案 0 :(得分:2)

来自MDN

  

从DOM iframe元素,脚本可以通过contentWindow属性访问包含的HTML页面的窗口对象。 contentDocument属性引用iframe中的document元素(这相当于contentWindow.document),但在IE8之前的Internet Explorer版本不支持。

我认为你想要使用contentWindow。