我想让父母< 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