search

Home  >  Q&A  >  body text

jquery - 如何阻止h5body的滑动

做了个选择时间的控件。处于上一层,滑动选择时间的时候,有时候底部也跟着滑动。该怎么解决呢?

怪我咯怪我咯2782 days ago446

reply all(1)I'll reply

  • 高洛峰

    高洛峰2017-04-17 11:49:04

    // 禁止
    document.body.style.overflow = 'hidden';
    function _preventDefault(e) { e.preventDefault(); }
    window.addEventListener('touchmove', _preventDefault);
    
    // 恢复
    document.body.style.overflow = 'auto';
    window.removeEventListener('touchmove', _preventDefault);

    reply
    0
  • Cancelreply