您的位置:首页 > 移动开发

禁止页面滚动(移动端)

2017-03-15 17:09 381 查看
/*禁止页面滚动*/

disableScroll:function(){

$(window).bind("touchmove",function(e){

e.preventDefault();

})

}

/*允许页面滚动*/

allowScroll:function(){

$(window).unbind("touchmove");

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: