1
我想完全禁用頁面上的滾動jQuery(不正文溢出:隱藏)。無法停止頁面滾動與e.preventDefault();
我認爲這會工作,但由於某種原因它不。
$(window).on("scroll", function(e) {
e.preventDefault();
});
我想完全禁用頁面上的滾動jQuery(不正文溢出:隱藏)。無法停止頁面滾動與e.preventDefault();
我認爲這會工作,但由於某種原因它不。
$(window).on("scroll", function(e) {
e.preventDefault();
});
我試圖做同樣的事情在一個月前,並設法得到它的工作就像描述here
http://jsbin.com/xatidu/4/edit?html,css,output –