3
私はulの子供のために異なる色を注文したいのですが、どうすればjqueryを使って子供の注文を得ることができますか?子選択されたjqueryの順序を取得
<ul>
<li>a</li>
<li>b</li>
<li>c</li>
<li>d</li>
<li>e</li>
<li>f</li>
</ul>
$('ul li').bind('mouseover', function(e){
//how can I get the order of the childre
//when hover on c it shoul returns 3
alert("child order ");
});
ここでの例では、...
$(this).index() + 1
jsFiddleを使用して、HTMLのサブセットのために http://jsfiddle.net/sHefJ/