一,禁止滾動,滾動條不消失,頁面大小不閃動
//禁止滾動條滾動 function unScroll() { var top = $(document).scrollTop(); $(document).on('scroll.unable',function (e) { $(document).scrollTop(top); }) } //移除禁止滾動條滾動 function removeUnScroll() { $(document).unbind("scroll.unable"); }
二, 禁止滾動,滾動條消失,會有閃動
//滾動條消失 $('html,body').css({'overflow': 'hidden'}); //滾動條出現 $('html,body').css({'overflow': 'auto'});
.