on(type, fn, context)

  • 参数:
    • {String} type 事件名
    • {Function} fn 回调函数
    • {context} 函数执行的上下文环境,默认是 this
  • 返回值:无
  • 作用:监听当前实例上的自定义事件。如:scroll, scrollEnd, pullingUp, pullingDown等。
  • 示例:
  1. import BScroll from 'better-scroll'
  2. let scroll = new BScroll('.wrapper')
  3. function onScroll(pos) {
  4. console.log(`Now position is x: ${pos.x}, y: ${pos.y}`)
  5. }
  6. scroll.on('scroll', onScroll)