gpt4 book ai didi

javascript - 如何迭代jquery选择器的结果

转载 作者:可可西里 更新时间:2023-11-01 01:23:00 24 4
gpt4 key购买 nike

我想迭代查询选择器的结果。

HTML代码

<nav id="navigation">
<a href="#" tabindex="1" class="active_nav">nav1</a>
<a href="#" tabindex="2">nav2</a>
<a href="#"tabindex="3">nav3</a>
</nav>

当我使用 javascript 时

alert($("#navigation >a")[0]);

结果是标签a的href属性我不知道为什么。

最佳答案

使用$.each

$("#navigation > a").each(function() {

console.log(this.href)
});

$('#navigation > a')[0]
^ ^---- Selects the 1st dom object from the jQuery object
| that is nothing but the index of the element among
| the list of elements
|------- Gives you children of nav(3 anchor tags in this case) which is a
jQuery object that contains the list of matched elements

关于javascript - 如何迭代jquery选择器的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17717205/

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