gpt4 book ai didi

jquery - 选择没有第一个父级 img 的所有标签 a jQuery

转载 作者:行者123 更新时间:2023-12-01 06:22:44 24 4
gpt4 key购买 nike

我需要选择所有 a 标签,但它们的第一个子标签中不应该有 img 标签。

我为其编写了脚本,但省略了选择器。

 $(document).ready(function() {
$().mouseenter(function(i) {
$(this).css("border","2px solid orange");
}).mouseleave(function(i){
$(this).css("border","none");
});
});

和 HTML:

<a href=""></a><!--need to select-->
<a href=""><!--don't need to select-->
<img src"">
</a>
<a href=""></a><!--need to select-->

最佳答案

选择器是:

$("a:not(:has(img))")

它将选择所有不含 imga 元素。

Demo

关于jquery - 选择没有第一个父级 img 的所有标签 a jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17490268/

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