1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

jQuery eachの使い方・抜け出し方・スキップの仕方

Posted at

用途

jQueryのオブジェクトに対して、繰り返しの処理をしたい時に使う。
繰り返しの処理から抜け出したい時に使う。
処理をスキップさせたい時に使う。

使用方法

書き方
$.each(配列やオブジェクト, function(index, value) {
    //繰り返しの処理を書く
})

第1引数に処理を行いたい配列・オブジェクトを指定する。
第2引数に関数を指定する。関数の引数で「index(番号)」「value(値)」を取得できる。

繰り返しの処理から抜け出したい時

return false で抜けられる。
JavaScriptのループから抜け出すときはbreakを使うが、jQueryでは使えない。

処理をスキップさせたい時

return true でスキップできる。
JavaScriptのループのスキップはcontinueを使うが、jQueryでは使えない。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?