gpt4 book ai didi

jquery div子元素搜索

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

HTML:

<div id="a">
<span></span>
<img />
</div>

jQuery:

var a = $("#a").children().find("img"); 

显示a.length = 0。这里有什么问题吗?

最佳答案

使用这个:

$("#a").find("img");

find搜索选择器的后代,并且 <img>不是任何 <div id="a" 的后代> 直接 child 。

find docs :

Description: Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.

Live DEMO

请注意,您可以使用更高效的选择器获得相同的结果:

$("#a img")...

descendant选择器docs :

Description: Selects all elements that are descendants of a given ancestor.

Live DEMO

关于jquery div子元素搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10266658/

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