Chrome浏览器:顶部的负滚动

时间:2014-10-17 14:36:29

标签: javascript google-chrome scroll

我试过这个技巧来阻止chrome上的负滚动

html { overflow: hidden;}
body {overflow: auto;}

我已经在上面这个:

html,body { height: 100%; }

但是这一个阻止了文档和窗口对象scrollTop为0。

如何在没有效果文档和窗口对象的情况下阻止负滚动?

我也试过这个

$(window).on('scroll', function(e){
  if ( $(this).scrollTop() < 0 ){
    e.preventDefault();
    e.stopPropagation();
  }
});

1 个答案:

答案 0 :(得分:0)

您还需要添加:

height: 100%;
width: 100%;

body&amp; html