gpt4 book ai didi

jquery - 我如何在 Jquery 中通过相同的类名获取所有父 ID?

转载 作者:搜寻专家 更新时间:2023-10-31 08:03:50 24 4
gpt4 key购买 nike

<div id=id1>
<input class=class1>
</div>

<div id=id2>
<input class=class1>
</div>

上面是我的html标签。在下面的代码中,我选择了这样的父 ID,

$(".class1").parent().attr('id')

但我只得到 id1。我想要 id1 和 id2。 ??怎么办?

最佳答案

根据文档:

.attr( attributeName ): Get the value of an attribute for the first element in the set of matched elements.

因此,您需要使用 .map() 函数获取所有元素的 id,并使用 .get() 将它们放入数组中:

$(".class1").parent().map(function(){
return this.id;
}).get();

Working Demo

关于jquery - 我如何在 Jquery 中通过相同的类名获取所有父 ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29888858/

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