如何获得使用母版页的网页的完整高度?
我正在编写一个脚本,该脚本创建一个弹出窗口,使弹出窗口后面的屏幕变暗。我正在使用 JQuery 的 $("#dim").css("height", $(document).height());
来调整相关 div
元素的大小,但它不覆盖母版页区域。有没有办法获得整个页面的高度,而不仅仅是子页面的高度?
编辑:问题实际上可能在于我的 div 的定位,而不是大小。我已将其设置为 top:0
,但也许我需要使用 JavaScript 移动它?
I'm writing a script that creates a popup that dims the screen behind the popup. I'm using JQuery's $("#dim").css("height", $(document).height());
to resize the div
element in question, but it doesn't cover the master page area. Is there a way I can get the height of the WHOLE page and not just the child page?
EDIT: The problem may actually lie in the positioning, and not the size, of my div. I have it set to top:0
, but maybe I need to move it using javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试一试:
Give this a shot:
由于
window
或document
不支持.outerHeight()
,因此您必须向height( )
你自己。Since
.outerHeight()
isn't supported forwindow
ordocument
, you'll have to add the padding to theheight()
yourself.