共计 179 个字符,预计需要花费 1 分钟才能阅读完成。
如果项目中的某些组件使用了 better-scroll 或 iscroll 这些轮播之类的插件,会导致 click 事件无效。
需要配置一些选项
const options = { // better-scroll 插件会导致 click 事件失效,这个配置项是解决这个问题的
click: true,
tap: true
},
const scroll = new Bscroll(dom,options);
正文完