jQuery - 确定列表项内子元素的最佳方法

发布于 2024-08-04 05:36:29 字数 389 浏览 4 评论 0原文

从下面的 HTML 中,我需要找出哪个列表标签具有活动类,然后对于活动列表,我需要找到相关值

    <li class="active">
    <a href="value1" class="Tab1">Services</a>
    </li>
    <li><a href="value2" class="Tab2">Create Account</a>
    </li>
    <li><a href="value3" class="Tab3">Modify Account</a>
    </li>

执行此操作的最佳方法是什么?

From the following HTML I need to figure out which List tag has class active and further on for the active List I need to find the relevant value

    <li class="active">
    <a href="value1" class="Tab1">Services</a>
    </li>
    <li><a href="value2" class="Tab2">Create Account</a>
    </li>
    <li><a href="value3" class="Tab3">Modify Account</a>
    </li>

What is the best way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

北笙凉宸 2024-08-11 05:36:29

$('li.active a').attr('href') 将返回 'value1'

$('li.active a').attr('href') would return 'value1'

当爱已成负担 2024-08-11 05:36:29
$("li.active a").text()

将检索innerHTML

$("li.active a").attr("href")

将检索路径

并将

$("li.active a").attr("class")

检索类。

编辑:更新了选择器以选择链接而不是列表项。

$("li.active a").text()

will retrieve the innerHTML

$("li.active a").attr("href")

will retrieve the path

and

$("li.active a").attr("class")

will retrieve the class.

EDIT: Updated the selectors to select the link and not the list item.

温柔少女心 2024-08-11 05:36:29

如果您想查看“服务”,我认为这就是您想要的:

$("li.active a").text();

I think this is what you want, if you're wanting to see "Services":

$("li.active a").text();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文