jquery 禁止滚动条滚动,并且滚动条不消失,页面大小不闪动


一,禁止滚动,滚动条不消失,页面大小不闪动

//禁止滚动条滚动
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'});

 

 

 

 

.


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM