livequery 是否已弃用

发布于 2024-12-08 05:41:06 字数 202 浏览 0 评论 0原文

我正在看旧代码。我发现对于使用 ajax 添加的元素,有很多 livequery 代码。新版本的 jquery 不再需要 livequery 了吗?有谁知道哪个版本之后不再需要它?

$("#somediv").livequery(function(){
    $(this).click(function(){

    });
});

I'm looking at old code. I'm seeing that for elements that get added with ajax, there's lots of livequery code. Is livequery not needed anymore with the newer versions of jquery? Does anyone know after which version exactly it's not needed?

$("#somediv").livequery(function(){
    $(this).click(function(){

    });
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

软糯酥胸 2024-12-15 05:41:06

livequery.live() 是一个完全不同的概念。

.live() 方法使用事件委托来处理页面上任何位置发生的事件。

livequery 将在 DOM 发生更改时调用处理程序(通过 jQuery 方法)。

对于下面的示例,当将带有 class="some_class" 的元素添加到 DOM(或将类添加到元素)时,第一个处理程序将运行。移除后,是第二个。

$('.some_class').livequery( function() {

       // apply a plugin to the element
    $(this).somePlugin();

}, function() {

    // clean up after the element was removed

});

实际应该很少需要 livequery,但在极少数情况下,您需要响应 DOM 更改,并且无法控制导致这些更改的 jQuery,它可能有用。

livequery is an entirely different concept from .live().

The .live() method uses event delegation to handle events that occur anywhere on the page.

livequery will invoke handlers when DOM changes occur (via jQuery methods).

For the example below, when an element with class="some_class" is added to the DOM (or the class is added to an element), the first handler will run. When removed, the second.

$('.some_class').livequery( function() {

       // apply a plugin to the element
    $(this).somePlugin();

}, function() {

    // clean up after the element was removed

});

There should be little actual need for livequery, but in that rare case where you need to respond to DOM changes, and have no control over the jQuery that is causing those changes, it can be useful.

娇纵 2024-12-15 05:41:06

您必须使用 on() 并将事件附加到父级或正文。例如:

$('#obj').livequery('click', function() { ... });
$('#obj').livequery(function() { ... });

注意

$('body').on('click', '#obj', function() { ... });
$('body').on('DOMNodeInserted','#obj', function() { ... });

DOMNodeInserted 是 IE9+

You have to use on() and attach the event to a parent or body. Ex :

$('#obj').livequery('click', function() { ... });
$('#obj').livequery(function() { ... });

become

$('body').on('click', '#obj', function() { ... });
$('body').on('DOMNodeInserted','#obj', function() { ... });

note that DOMNodeInserted is IE9+

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文