jQuery绑定事件一种奇怪的写法不明白

在看别人的一个datepicker插件的源码的时候,看到它里面绑定事件大量的这种代码

_bindEvents : function () {            this.$el.on(this.opts.showEvent + '.adp', this._onShowEvent.bind(this));            
this.$el.on('mouseup.adp', this._onMouseUpEl.bind(this));            this.$el.on('blur.adp', this._onBlur.bind(this));            
this.$el.on('keyup.adp', this._onKeyUpGeneral.bind(this));
            $(window).on('resize.adp', this._onResize.bind(this));
            $('body').on('mouseup.adp', this._onMouseUpBody.bind(this));
        },

第一次见过这种事件后面加上adp的写法,甚是不解。有了解的同学可以帮忙解释一下么。

代码来源:
https://github.com/t1m0n/air-...


婷婷同学_
浏览 542回答 0
0回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript