在网上看到这么一个例子,用on去绑定,但是on不是jQuery的方法吗?在Vue中可以直接写on吗?为什么我用addEventListener会不支持此方法?
let that = this;
this.button1.on('click',function(e){
this.addClass('on'); //this指代所点的元素
that.doSomething(); //that指向类的this
})
在网上看到这么一个例子,用on去绑定,但是on不是jQuery的方法吗?在Vue中可以直接写on吗?为什么我用addEventListener会不支持此方法?
let that = this;
this.button1.on('click',function(e){
this.addClass('on'); //this指代所点的元素
that.doSomething(); //that指向类的this
})
8 回答5.2k 阅读✓ 已解决
6 回答4.1k 阅读✓ 已解决
9 回答7.9k 阅读
5 回答3.2k 阅读✓ 已解决
6 回答2.8k 阅读
5 回答6.8k 阅读✓ 已解决
2 回答11.3k 阅读✓ 已解决
点击事件直接在html标签那里写@click=“”就行