我有一個鏈接:點擊事件衝突有2種不同嗎?
<a href="javascript:void(0)" class="lorem hello"> link </a>
我有兩個不同的onclick功能設置爲兩個類是這樣的:
jQuery(".lorem").each(function(){
this.onclick = function() {
// stuff
}
});
和
jQuery(".hello").each(function(){
this.onclick = function() {
// stuff
}
});
這將停止頂一個工作。爲什麼?我怎樣才能使兩個功能分開工作?
jQuery和'onclick'處理程序?你正在做一些反模式。使用jQuery'on'方法來綁定事件處理程序。 – undefined