function touchMoveHandler(e){ e.preventDefault(); } //禁止滑动 document.addEventListener('touchmove', touchMoveHandler, false); //解除禁止 document.removeEventListener('touchmove', touchMoveHandler, false);