vue页面出现弹框页面禁止滚动,弹框消失,恢复正常滑动效果

//禁止滑动
        var mo=function(e){e.preventDefault();};
        document.body.style.overflow='hidden';
        document.addEventListener("touchmove",mo,false)    
//恢复滑动
        var mo=function(e){e.preventDefault();};
        document.body.style.overflow='';//出现滚动条
        document.removeEventListener("touchmove",mo,false);    

 

转载于:https://www.cnblogs.com/sakura-lifangfang/p/10557070.html

你可能感兴趣的:(vue页面出现弹框页面禁止滚动,弹框消失,恢复正常滑动效果)