我需要访问 IFRAME 内文档的文档对象。有没有办法为 IE7 和 IE8 做到这一点?
我需要获取 内文档的
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试用 :
try out :
试试这个
上面的代码应该返回 iframe 文档,然后获取 iframe 文档的scrollHeight 属性。
Try this
The above code should return you the iframe document, then get the scrollHeight attribute of the iframe document.