IFrame 默认大小(FF)
我需要 iframe 元素相对于整个页面的精确边框。由于我只能获取元素的一个点(左上角),因此我还需要尺寸(宽度和高度) - 这并不总是设置的。
如果未设置尺寸,我需要找到一种方法来获取默认尺寸。我更喜欢没有 JQuery 的纯 JS 解决方案。
使用调试器查找默认大小可能会有所帮助,但我想知道是否有不同的方法可以为我提供通用而不是“硬编码”的解决方案(即某种“getDefaultIframeSize”)。
谢谢。
I need the exact borders of the iframe element relative to the whole page. Since I can only get one point (topleft) of the element, I also need the size (width and height) - which aren't always set.
In case the size isn't set I need to find a way to get the default size. I prefer a solution in pure JS without JQuery.
Finding the default size with a debugger can help, but I wanted to know if there's a different way that will give me a general and not "hard-coded" solution (i.e some kind of "getDefaultIframeSize").
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您始终可以将 iframe 放在页面上,而不需要任何宽度/高度详细信息,加载页面,然后使用 FireBug
之类的内容检查 iframe 元素http://getfirebug.com/
Firebug 会告诉你计算出的窗口宽度和高度
You could always just put the iframe on your page without any width/height details, load the page and then inspect the iframe element with something like FireBug
http://getfirebug.com/
Firebug will tell you the computed width and height of the window