Maison > Article > interface Web > jquery obtient les nœuds enfants et l'attribut de nœud actuel Values_jquery
<li class="menulink"> <a href="#" rel="external nofollow" id="101" onclick="changeMenu('101','资料管理','#' )"><span>资料管理</span> </a> </li>
Obtenir les nœuds enfants :
$(".menulink a").each(function(){ var id=this.id; });
Obtenir le nœud actuel :
$(".menulink ").each(function(){ var id=this.id; });