当前位置:Gxlcms > JavaScript > jquery取子节点及当前节点属性值的方法

jquery取子节点及当前节点属性值的方法

时间:2021-07-01 10:21:17 帮助过:5人阅读

分享下jquery取子节点及当前节点属性值的方法。

<li class="menulink">
<a href="#" rel="external nofollow" id="101" onclick="changeMenu('101','资料管理','#' )"><span>资料管理</span>
</a>
</li>

取子节点:

$(".menulink a").each(function(){
var id=this.id;
});

取当前节点:

$(".menulink ").each(function(){
var id=this.id;
});

人气教程排行