我在我的infiniteScroll类中创建一个事件:
$.event.trigger('load');
然后我通过以下方式听取它:
this.infiniteScroll = new gd.InfiniteScroll();
this.infiniteScroll.on('load', this.loadData);
但这失败了,我收到了错误:
Uncaught TypeError: Object [object Object] has no method 'on'
我知道哪里出错?