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); } }

 

相关文章:

  • 2021-06-24
  • 2022-12-23
  • 2021-08-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-15
  • 2022-12-23
  • 2021-12-20
  • 2022-12-23
  • 2021-08-27
  • 2022-01-19
  • 2021-11-02
相关资源
相似解决方案