美文网首页
Web禁止移动事件穿透

Web禁止移动事件穿透

作者: Micro同学 | 来源:发表于2018-04-20 17:23 被阅读28次

今天使用mint-ui的时候发现picker弹起之后进行滑动,后面的页面也会滑动。
故解决方法如下

html
<div @touchmove.native="stopTouch"></div>
js(vue.js)
methods: {
    stopTouch (e) {
        e.stopPropagation()
        e.preventDefault()
    }
}

相关文章

网友评论

      本文标题:Web禁止移动事件穿透

      本文链接:https://www.haomeiwen.com/subject/nrjzkftx.html