jQuery on() Event Binding
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
What's the difference betweenon andlive orbind ?
我注意到人们提到了 jQuery 的
如果有人有任何解释差异的输入或链接,我将不胜感激。
您现在可以将
As of jQuery 1.7, the .on() method provides all functionality required
for attaching event handlers.
您可以像使用
1 2 3 | $(elem).on("click", function() { //Do stuff }); |
你也可以像使用
一样使用它
1 2 3 | $(elem).on("click","selector", function() { //Do stuff }); |
这篇博文在一定程度上讨论了它:http://blog.jquery.com/2011/09/28/jquery-1-7-beta-1-released/