当我在Internet Explorer 7中显示代表模式窗口的div时,我需要锁定浏览器滚动条。
谷歌搜索我发现我可以使用document.body.style.overflow='hidden'
,但这对IE7不起作用。我也尝试使用document.body.scroll="no"
但只有在我将鼠标悬停在滚动条上后才能工作:-S
有人知道更好的方法吗?
Thansks
答案 0 :(得分:13)
要回答您的各种问题(包括您在其他评论中的问题),我认为您使用的是错误的定位方法。
试试position:fixed
。它与position:absolute
基本相同,除了它相对于绝对视口。即:如果用户滚动,则该项目停留在屏幕上的相同位置。
因此,考虑到这一点,您可以布置position:fixed
叠加层。在其中,您可以使用position:absolute
(或fixed
再次,如果您愿意 - 不应有所作为)模式框。
答案 1 :(得分:2)
设置你的模态叠加div来填充身体,所以即使他们滚动,他们也无能为力,因为一切都隐藏在它下面。
答案 2 :(得分:0)
你也可以使用overflow:hidden
来隐藏滚动条,这样用户就不会看到scollbars所以它不会受到诱惑:)
答案 3 :(得分:0)
这可以帮到你:
documentOBJ = {
/*Width and Height of the avaible viewport, what you'r seeing*/
window : {
x : function(){return (document.documentElement && document.documentElement.clientWidth) || window.innerWidth || self.innerWidth || document.body.clientWidth; },
y : function(){return (document.documentElement && document.documentElement.clientHeight) || window.innerHeight || self.innerHeight || document.body.clientHeight;}
},
/*Scroll offset*/
scroll : {
x : function(){return ( document.documentElement && document.documentElement.scrollLeft) || window.pageXOffset || self.pageXOffset || document.body.scrollLeft; },
y : function(){return ( document.documentElement && document.documentElement.scrollTop) || window.pageYOffset || self.pageYOffset || document.body.scrollTop; }
},
/*Height and width of the total of the xhtml in a page*/
page : {
x : function(){return (document.documentElement && document.documentElement.scrollWidth) ? document.documentElement.scrollWidth : (document.body.scrollWidth > document.body.offsetWidth) ? document.body.scrollWidth : document.body.offsetWidth; },
y : function(){return (document.documentElement && document.documentElement.scrollHeight) ? document.documentElement.scrollHeight : (document.body.scrollHeight > document.body.offsetHeight) ? document.body.scrollHeight : document.body.offsetHeight; }
},
pointer : {}
}