使用jquery获取ul中第1层li的index()值

2022-11-16 0 394

如何使用jquery获取ul中第1层li的index()值

 

演示代码如下:

HTML代码:

<ul id="nav">

<li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >建站素材</a></li>

<li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >jquery特效</a>

<ul>

<li>1111</li>

<li>1111</li>

<li>1111</li>

<li>1111</li>

<li>1111</li>

</ul>

</li>

<li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >建站素材</a>

<ul>

<li>1111</li>

<li>1111</li>

<li>1111</li>

<li>1111</li>

<li>1111</li>

</ul>

</li>

<li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >建站素材</a>

<ul>

<li>1111</li>

<li>1111</li>

<li>1111</li>

<li>1111</li>

<li>1111</li>

</ul>

</li>

<li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >建站素材</a>

<ul>

<li>1111</li>

<li>1111</li>

<li>1111</li>

<li>1111</li>

<li>1111</li>

</ul>

</li>

<li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >前端路上</a></li>

</ul>

<style>

#nav li{float:left; width:100px}

</style>

 

JQuery代码:

 

$("#nav").each(function(){

var y = $(this).children()

$(y).each(function(i,o){

a lert( $(o).index());

})

});

1. 本站所有资源来源于用户上传和网络,因此不包含技术服务请大家谅解!如有侵权请邮件联系客服!cheeksyu@vip.qq.com
2. 本站不保证所提供下载的资源的准确性、安全性和完整性,资源仅供下载学习之用!如有链接无法下载、失效或广告,请联系客服处理!
3. 您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容资源!如用于商业或者非法用途,与本站无关,一切后果请用户自负!
4. 如果您也有好的资源或教程,您可以投稿发布,成功分享后有积分奖励和额外收入!
5.严禁将资源用于任何违法犯罪行为,不得违反国家法律,否则责任自负,一切法律责任与本站无关

源码下载

发表评论
暂无评论