2048在移动端下滑的时候会引起浏览器刷新导致下滑没作用怎么解决
document.addEventListener('touchmove', function(event){
event.preventDefault();
});
在监听touchmove事件中,禁用系统本身的下拉效果。