0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【jQuery】繰り返し処理

Posted at

繰り返し処理

jQueryを使用してDOM要素の集合に対して反復処理を行うためのいくつかの方法があります。

1. eachメソッド
jQueryのeachメソッドは、セット内の各要素に対して指定された関数を実行します。これは、for文のような反復処理を行うための主な方法です。

$('li').each(function(index, element) {
    console.log(index + ': ' + $(element).text());
});

この例では、<li>要素の集合内の各要素に対して、そのインデックスとテキスト内容をコンソールに出力しています。

2. $.each関数
$.each関数は、jQueryオブジェクトや配列などのコレクションに対して反復処理を行います。

$.each([1, 2, 3], function(index, value) {
    console.log(index + ': ' + value);
});

この例では、配列内の各要素に対して、そのインデックスと値をコンソールに出力しています。

これらの方法は、jQueryを使用してDOM要素の反復処理を行うための一般的な手法です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?