您好,匿名用户
随意问技术百科期待您的加入

on(), live(), bind() 之间有什么区别呢

0 投票

jQuery中看着实现的效果都是一样的,不知道有什么具体区别呢?

用户头像 提问 2013年 9月7日 @ 卫宫士郎 上等兵 (173 威望)
分享到:

1个回答

0 投票

http://api.jquery.com/live/
Attach an event handler for all elements which match the current selector, now and in the future. (动态生成的也行)

--------------------------------------
http://api.jquery.com/bind/
Handlers are attached to the currently selected elements in the jQuery object, so those elements must exist at the point the call to .bind() occurs. (先决条件,绑定的dom element必须已经存在)
------------------

As of jQuery 1.7, the .on() method is the preferred method for attaching event handlers to a document.

手册上有相关用法例子

$("a.offsite").live("click", function(){ alert("Goodbye!"); });               
$(document).on("click", "a.offsite", function(){ alert("Goodbye!"); });
$('#foo').bind('click', function() {alert('User clicked on "foo."');});

on的这个$(document), 请参考 http://stackoverflow.com/questions/81...

用户头像 回复 2013年 9月7日 @ Corki 上等兵 (263 威望)
提一个问题:

相关问题

0 投票
1 回复 40 阅读
用户头像 提问 2012年 12月1日 @ Malphite 上等兵 (306 威望)
+2 投票
1 回复 302 阅读
0 投票
1 回复 39 阅读
0 投票
1 回复 33 阅读
用户头像 提问 2012年 12月1日 @ Shen 上等兵 (318 威望)
0 投票
1 回复 36 阅读

欢迎来到随意问技术百科, 这是一个面向专业开发者的IT问答网站,提供途径助开发者查找IT技术方案,解决程序bug和网站运维难题等。
温馨提示:本网站禁止用户发布与IT技术无关的、粗浅的、毫无意义的或者违法国家法规的等不合理内容,谢谢支持。

欢迎访问随意问技术百科,为了给您提供更好的服务,请及时反馈您的意见。
...