有弹层、禁止页面滚动 (JavaScript代码复制修改可用)

IT-Pony 2017-03-07 AM 529℃ 4294967295条
var jinzhi=0;

$('.zhezhao').click(function(){
    $('.zhezhao').css('display','none');
    $('body').css('overflow','auto');
    jinzhi = 1;
    document.removeEventListener("touchmove")
});
document.addEventListener("touchmove",function(e){
    if(jinzhi==0){
        e.preventDefault();
        e.stopPropagation();
    }
},false);
标签: web

非特殊说明,本博所有文章均为博主原创。

评论啦~