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

前端之家收集整理的这篇文章主要介绍了javascript – 如何迭代jquery选择器的结果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想迭代查询选择器的结果.

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]);

结果是标签是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
原文链接:https://www.f2er.com/jquery/151090.html

猜你在找的jQuery相关文章