admin管理员组文章数量:1345284
The question says it all. Which one is better and when to use what, I never use jQuery live() as I am using liveQuery plugin for a couple of years, I am used to it and still continue using it. But I want to know the subtle differences between the two and when to use each of it?
The question says it all. Which one is better and when to use what, I never use jQuery live() as I am using liveQuery plugin for a couple of years, I am used to it and still continue using it. But I want to know the subtle differences between the two and when to use each of it?
Share Improve this question edited Feb 4, 2010 at 19:04 AJ. 28.2k19 gold badges88 silver badges97 bronze badges asked Feb 4, 2010 at 19:01 Teja KantamneniTeja Kantamneni 17.5k12 gold badges57 silver badges86 bronze badges4 Answers
Reset to default 5The "live" function native to jQuery leverages the bubbling of events up the DOM. The "liveQuery" plugin, by contrast, uses the selector to find elements in the DOM and attach event handlers directly.
In my opinion you're way better off using the "live" function when possible, because it involves less DOM traversal etc. For example, hooking event handlers to things throughout a big table can be kind-of slow with liveQuery but not slow at all with "live". There may be some issues (with IE of course) that force you to use liveQuery sometimes, though jQuery 1.4 has improved "live" considerably.
edit — Update: Sep 2017
At this point, modern versions of jQuery centralize event handler registration in the .on()
API. Briefly:
$(selector).live("event-name", handler);
would today be written with .on()
:
$(document).on("event-name", selector, handler);
The .on()
API provides considerably more flexibility than the long-deprecated .live()
method did, including the option of using any node in the DOM as the delegation point (like the old .delegate()
did).
As Pointy said, live()
leverages the bubbling of events up the DOM (event delegation).
Also, for each $(selector).live(type, handler)
call, jQuery only calls handler
on the $(event.target).closest(selector)
element - that is, the nearest matching ancestor-or-self element of the event target.
And, of course, live()
doesn't support anything like livequery( matchedFn, unmatchedFn )
.
Implications:
$(selector).live()
still requires a traversal of the DOM (obviously). However, if you load jQuery and attach live() handlers in the document head then there is no document body to search yet. Similarly if you insert new content into the page.live()
does less work when being configured - it doesn't have to attach handlers to every matched elementlive()
does more work in handling events - it has to traverse ancestors of the event target, finding elements that match the selector$("div").live()
is different to$("div").livequery()
as it only works for the closestdiv
to the event target- Similarly,
$("div, p").live()
is different to$("div").live(); $("p").live();
liveQuery plugin was created initially, and then was migrated to jQuery itself.
One of the differences is that .live() is native to jQuery (http://api.jquery./live/) and .livequery() is a plugin. As you can see at http://api.jquery./live/, .live() was deprecated in jQuery 1.7, and removed in version 1.9.
本文标签: javascriptWhat is the difference between jQuery live() and liveQuery pluginStack Overflow
版权声明:本文标题:javascript - What is the difference between jQuery live() and liveQuery plugin? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743779390a2537559.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论