javascript – 使用jQuery获取parent> item

前端之家收集整理的这篇文章主要介绍了javascript – 使用jQuery获取parent> item前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想让父母< li>当我点击特定的< li>项目.

http://jsfiddle.net/doonot/GjbZk/

所以,假设我点击子模块1,我得到点击的ID与$(this).attr(‘id’);
我现在如何获得父母的ID< li>在这种情况下模块1?

请注意我的树很大,所以它必须灵活.

非常感谢,非常感谢您的回答.

解决方法

var parentModule = $('this')             //the selector of your span
    .parents('li:eq(1)')                 //get the next li parent,not the direct li
    .children('.rightclickarea:first')   //get the first element,which would be the span
    .attr('id')                          //get the span id
原文链接:https://www.f2er.com/jquery/156746.html

猜你在找的jQuery相关文章