LoginSignup
1
0

More than 5 years have passed since last update.

jQueryのfilterメソッド

Last updated at Posted at 2018-07-01

要素の絞り込み行うためのメソッド

<ul>
  <li class="asia">Japan</li>
  <li class="america">USA</li>
  <li class="europe">France</li>
</ul>
 console.log($('li').filter('.asia').html());

以下のように表示

Japan

参考

[【jQuery入門】filterメソッドの使い方まとめ]
(https://www.sejuku.net/blog/32325)

[jQueryでセレクタで指定するのとfilter()で絞るの、どっちがいいか。]
(http://www.tinybeans.net/blog/2011/10/17-220954.html)

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