html - How to solve the problem of drop-down display in WeChat micro-scene with H5
曾经蜡笔没有小新
曾经蜡笔没有小新 2017-06-13 09:22:59
0
2
944

曾经蜡笔没有小新
曾经蜡笔没有小新

reply all(2)
刘奇
//禁止滚动
document.body.addEventListener('touchmove', function (event) { event = event ? event : window.event; if (event.preventDefault) { event.preventDefault() } else { event.returnValue = false } }, false);
迷茫

Just block the default event of touchmove

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template