1. 程式人生 > >Vue 彈出層時 禁止頁面滑動

Vue 彈出層時 禁止頁面滑動

上程式碼

     /***滑動限制***/
      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,true);//頁面可以滑動
      }

移動端彈出框時可以呼叫使用者兩個方法,如果不是Vue,可以直接給html設定overflow:hinder


--------------------- 
作者:cdx1170776994 
來源:CSDN 
原文:https://blog.csdn.net/cdx1170776994/article/details/78775020