确定 Mozilla 4 内容区域的边界矩形
在 Firefox 4 之前的版本中,Web 内容包含在“MozillaContentWindowClass”类的窗口中。在较新的版本中,整个窗口是基于内容的,包括工具栏等。任何人都可以建议必要的 Javascript 代码来确定 Web 内容的边界矩形(或至少垂直偏移)吗?
In versions of Firefox prior to 4, the web content was contained in a window of class "MozillaContentWindowClass". In the newer versions, the entire window is content-based, including toolbars, etc. Can anyone suggest the necessary Javascript code to determine the bounding rectangle (or at the very least the vertical offset) of the web content?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
getBrowser().selectedBrowser.getBoundingClientRect()
getBrowser().selectedBrowser.getBoundingClientRect()
window.innerHeight
将为您提供视口的高度,包括水平滚动条(如果有)。window.innerHeight
will give you the height of the viewport including the horizontal scrollbar (if any).