gpt4 book ai didi

javascript - jQuery : How to return an element by the value of a class of its child

转载 作者:行者123 更新时间:2023-11-27 22:36:43 25 4
gpt4 key购买 nike

我有一个按钮 block ,我想返回父级“li”的名称,其中包含带有“is active”类的按钮(a)

<li class="page" name="1"><a href="#" class="is-active">1</a></li> 
<li class="page" name="2"><a href="#">2</a></li>
<li class="page" name="3"><a href="#">3</a></li>
<li class="page" name="4"><a href="#">4</a></li>
<li class="page" name="5"><a href="#">5</a></li>

在这种情况下我想返回名称为“1”的第一个元素。

我已经尝试过了attr("class", "is-active")和方法 find().class("is-active")

但这没有用

有什么建议吗?

最佳答案

您可以使用 parent() 获取父项方法:

$('.is-active').parent().attr('name');

class() 示例中,您缺少句点前缀。

关于javascript - jQuery : How to return an element by the value of a class of its child,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39053460/

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