Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的页面中,我定义了一组具有相同点击事件的 DOM 元素(其中一些是动态加载的)
$('div.main-container a.class1, a.class2').live('click',function(){ ... });
该元素具有自己的功能a.class1,在这种情况下,我的组功能不会触发。那么,是否可以将两个不同的函数绑定到一个 DOM 元素?a.class2clickclickclick
a.class1
a.class2
click
将您需要的所有相关处理程序组合到一个函数中,并将所有点击事件绑定到如下内容:
function () { handler1(); handler2(); handler3(); }
干杯