gpt4 book ai didi

javascript - 如何在 slice() 之后使用 jQuery live()?

转载 作者:行者123 更新时间:2023-11-30 08:13:05 26 4
gpt4 key购买 nike

为什么 live()slice() 之后不工作?
我在这里做错了什么?

$('.object').slice(1).live('mouseenter', function() {
alert();
});

...

<div class="object">
1
<div class="object">
2
<div class="object">
3
</div>
</div>
</div>

最佳答案

Why won't live() work after slice()?

Straight from the API docs:

DOM traversal methods are not supported for finding elements to send to .live(). Rather, the .live() method should always be called directly after a selector, as in the example above.

使用不同的选择器。例如:

$('div.object:gt(0)').live('mouseenter', function()
{
// super awesome life things
});

关于javascript - 如何在 slice() 之后使用 jQuery live()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7615589/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com