使用better-scroll在安卓上有以下问题
当页面在滑动中,然后去点击better-scroll,会报
Ignored attempt to cancel a touchend event with cancelable=false, for example because scrolling is in progress and cannot be interrupted. at bscroll.min.js : 6
解决办法是
1.先在控制台找到报错代码的位置,以及文件目录位置
2.编辑器打开报错文件,找到报错位置,应该是在关于touchmove方法里,在执行e.preventDefault();e.stopPropagation();的if语句中加上一个条件判断 e.cancelable,就ok了
例如
if (e.cancelable) {
e.preventDefault();
e.stopPropagation();
}
本文介绍了一个在安卓设备上使用Better-Scroll组件时遇到的问题:在页面滑动过程中点击Better-Scroll会触发不可取消的touchend事件错误。文章提供了详细的解决方案,包括定位错误代码、修改touchmove方法中的if语句,通过增加e.cancelable条件判断来避免错误。
1116

被折叠的 条评论
为什么被折叠?



