码迷,mamicode.com
首页 > 其他好文 > 详细

vue如何禁止弹窗后面的滚动条滚动?

时间:2019-10-15 13:25:20      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:token   event   ring   ***   style   dde   add   touch   als   

methods : {
   //禁止滚动
   stop(){
        var mo=function(e){e.preventDefault();};
        document.body.style.overflow=‘hidden‘;
        document.addEventListener("touchmove",mo,false);//禁止页面滑动
    },
    /***取消滑动限制***/
    move(){
        var mo=function(e){e.preventDefault();};
        document.body.style.overflow=‘‘;//出现滚动条
        document.removeEventListener("touchmove",mo,false);
    }
}

vue如何禁止弹窗后面的滚动条滚动?

标签:token   event   ring   ***   style   dde   add   touch   als   

原文地址:https://www.cnblogs.com/kzxiaotan/p/11676783.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!