在点击儿童时,我想知道父母指数第1号。 例如,当我点击每ul孩子时,就有一个四分三ul子,应该显示其母子的母子指数。 我如何能够做到这一点?
j 质量:
$( .opSection ).on( click , li ,function(){
var num = $(this).parent( ul ).index();
alert(num);
//alert(chartData.Indices[$(this).index()][$(this).index()]);
})
传真:
<div class="opSection">//parent of all
<dl><dd>
<ul class="selectGroup" title= allIndia data-select= 1 >
<li data-index="123" class="c_on">All India</li> // when i click any of li i need 0
</ul>
<ul class="selectGroup" title= allIndia data-select= 1 >
<li data-index="123" class="c_on">All India</li> // when i click this, i need 1
</ul>
</dd></dl>
</div>