off(type, fn)
- 参数:
- {String} type 事件名
- {Function} fn 回调函数
- 返回值:无
- 作用:移除自定义事件监听器。只会移除这个回调的监听器。
- 示例:
import BScroll from 'better-scroll'
let scroll = new BScroll('.wrapper', {
pullUpLoad: true
})
function onPullingUp() {
console.log('pullingup success!')
}
scroll.on('pullingUp', onPullingUp) // 添加pullingup事件回调onPullingUp
...
scroll.off('pullingUp', onPullingUp) // 移除pullingup事件回调onPullingUp
...
原文: https://ustbhuangyi.github.io/better-scroll/doc/zh-hans/api.html