我有一个<ul>
,其中包含<li>
个,当我点击其中一个时,我将其更改为&#34; curent-menu-item&#34 ;但我也希望得到<li>
的订单。
我想要的例子:
<ul>
<li>first item</li>
<li>first item</li> //I click this and I want to return the value 2 (or 1, I still dont really udnerstand when numerotating starts from 0 and when it starts from 1)
<li>first item</li>
<li>first item</li>
</ul>
提前谢谢。