gpt4 book ai didi

jquery .on 父选择器

转载 作者:行者123 更新时间:2023-12-01 02:03:01 27 4
gpt4 key购买 nike

曾经有:

$("#element").parent().click(function() { alert("smth"); });

新的 jQuery 事件委托(delegate) on 相当于什么?

$(document).on("click", "how to select #element parent here?", function() { alert("smth"); });

更新:实际代码(虽然我不知道这会改变什么)

$(document).on("mouseover", ":has(>.hoverPhone)", function() {
alert("smth");
});

“#hoverPhone”是 jquery 数据表的一列单元格中的跨度。

<tr class="odd">
<td class=" sorting_1">05/11/2012</td>
<td class="">Surname</td>
<td class="">
<span class="hoverPhone" title="Alternative No: 0123456789">9876543210</span>
</td>
<td class="">DIGITAL CAMERA</td>
<td class="">6140</td>
<td class="">CAMTRONICS</td>
<td class="">clarify</td>
</tr>

顺便说一句,这仍然不起作用。

更新 2:似乎有效。然而,个人评论...“:has(>.element)”真的吗,jQuery?下一步是什么?这变得越来越令人困惑。

最佳答案

我最简单的:

$(document).on("click", ":has(>#element)", function(){...

Demonstration

关于jquery .on 父选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13397864/

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