我需要在IFRAME中访问文档的文档对象。有没有办法为IE7和IE8做到这一点?

时间:2011-07-13 16:43:36

标签: javascript dom iframe cross-browser

我需要在scrollHeight内获取文档的<iframe>属性。我尝试了以下所有选项:

contentWindow.document  
contentDocument  
window.frames  

所有这些都适用于IE9,Chrome和FF。但我无法让它在IE7和IE8中运行。

如果有人有一个很棒的解决方案。

感谢

2 个答案:

答案 0 :(得分:1)

试试:

contentWindow.documentElement.document

答案 1 :(得分:0)

试试这个

<script>
    var iframe_doc = "window.document.getElementById('your_iframe_id').document";
    iframe_doc = eval(iframe_doc);
</script>

上面的代码应该返回iframe文档,然后获取iframe文档的scrollHeight属性。