Dialog对话框弹出时阻止body滚动

Vue里面阻止滚动条滚动的方法:


在methods方法里写:


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

你可能感兴趣的:(Dialog对话框弹出时阻止body滚动)