js禁止/开启页面滑动

        //禁止/开启滑动
     function handler() {
  event.preventDefault();

}

        document.removeEventListener('touchmove', handler, false);

        document.addEventListener('touchmove', handler, false);        

猜你喜欢

转载自blog.csdn.net/fanlixing6/article/details/80700749
今日推荐