0

此代码禁用所有滚动:

document.ontouchmove = function(event) {
    event.preventDefault();
}

但是如何只禁用垂直滚动?

4

1 回答 1

0

你有没有尝试过

yourdiv.onscroll = function(){
this.scrollTop = 0;
this.scrollLeft = 0;
}

当然这可能仍然显示滚动条,最好使用 css

于 2013-02-28T21:54:24.447 回答