做了个选择时间的控件。处于上一层,滑动选择时间的时候,有时候底部也跟着滑动。该怎么解决呢?
走同样的路,发现不同的人生
// 禁止 document.body.style.overflow = 'hidden'; function _preventDefault(e) { e.preventDefault(); } window.addEventListener('touchmove', _preventDefault); // 恢复 document.body.style.overflow = 'auto'; window.removeEventListener('touchmove', _preventDefault);
走同样的路,发现不同的人生