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

发布于 2024-11-24 03:13:41 字数 270 浏览 0 评论 0原文

我需要获取 内文档的 scrollHeight 属性。我尝试了所有选项:

contentWindow.document  
contentDocument  
window.frames  

所有这些都适用于 IE9、chrome 和 FF。但我无法让它在 IE7 和 IE8 中工作。

如果有人有解决方案那就太好了。

谢谢

I need to get the scrollHeight property of the document inside the <iframe>. I tried all the options which are:

contentWindow.document  
contentDocument  
window.frames  

All these works fine for IE9,chrome and FF. But i couldnot get it to work in IE7 and IE8.

If anyone has a solution that would be great.

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝眼睛不忧郁 2024-12-01 03:13:41

试用 :

contentWindow.documentElement.document

try out :

contentWindow.documentElement.document
可是我不能没有你 2024-12-01 03:13:41

试试这个

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

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

Try this

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

The above code should return you the iframe document, then get the scrollHeight attribute of the iframe document.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文