search

Home  >  Q&A  >  body text

html - How to solve the problem of drop-down display in WeChat micro-scene with H5

曾经蜡笔没有小新曾经蜡笔没有小新2725 days ago943

reply all(2)I'll reply

  • 怪我咯

    怪我咯2017-06-13 09:24:59

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

    reply
    0
  • 迷茫

    迷茫2017-06-13 09:24:59

    Just block the default event of touchmove

    reply
    0
  • Cancelreply