在看別人的一個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-...
jQuery綁定事件一種奇怪的寫法不明白
婷婷同學_
2018-10-10 09:14:09