首页 > 编程 > JavaScript > 正文

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

2019-11-20 14:14:27
字体:
来源:转载
供稿:网友

分享下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;});
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表