jQuery eachメソッドでマッチしたオブジェクトの各要素に対して処理するサンプル
環境
Google Chrome 106.0.5249.119
Windows 10 Home 64bit
jQuery 3.6.0
構文
$(セレクター名).each(function(index){処理コード
マッチしたjQueryオブジェクトの各要素に対して関数を実行します。
引数となる関数の型は、function(index, element)となっています。
使用例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script> $(function(){ $("#btnchg").click(function() { $('li').each(function(index){ var em = index + ":" + $(this).text(); alert(em); }); }); }); </script> </head> <body> <ul> <li class="to">東京</li> <li class="oo">大阪</li> <li class="fu">福岡</li> </ul> <button type="button" id="btnchg">確認</button> </body> </html>
実行結果
「確認」ボタンを押すと、「0:東京」、「1:大阪」、2:福岡が表示されます。