# jQuery遍歷索引的方法 - 1.each() ```js $('li').each(function(index, ele){ $(ele).text(index).addClass('demo' + index); }); ``` - 2.children() ```js $('ul'). ...
# jQuery遍歷索引的方法
- 1.each() ```js $('li').each(function(index, ele){ $(ele).text(index).addClass('demo' + index); }); ```
- 2.children() ```js $('ul').children().each(function(index, ele){ $(ele).text(index).addClass('demo' + index); }); ```
- 3.index() 獲取標簽在兄弟元素中索引的值 ```js $('ul').on('click', 'li', function(e){ console.log( $(e.target).index() ); });//獲取ul下li的索引值
$('p').children().on('click', function(e){ console.log( $('p span').index( $(e.target) ) );//找到p元素下所有span元素,並且輸出點擊的span元素在所有span元素中的索引值 });//獲取ul下li的索引值 ```
以上是markdown格式的筆記