.first()

Posted by muchag | jQuery |
初回投稿:2015-02-17 (火) 17:50:13 | 最終更新:2015-02-17 (火) 17:52:15

エレメントセットの中の最初のエレメントを拾ってくるメソッド。

jQuery:.first()

【環境】
jQuery:1.11.2
書式

.first()

Reduce the set of matched elements to the first in the set.
勝手意訳:合致するエレメントセットから、セット内の最初のオブジェクトを捕まえる

引数:なし
返り値:jQuery オブジェクト
 

  1. <ul>
  2.     <li>list item 1</li>
  3.     <li>list item 2</li>
  4.     <li>list item 3</li>
  5.     <li>list item 4</li>
  6.     <li>list item 5</li>
  7. </ul>
  1. $( "li" ).first().css( "background-color", "red" );

li というエレメントセット(5個)の最初のオブジェクト

  1. <li>list item 1</li>

を捕まえて CSS を設定する。
 
child 系ではないので、ul に対する first ではない。

Posted by muchag | jQuery |
初回投稿:2015-02-17 (火) 17:50:13 | 最終更新:2015-02-17 (火) 17:52:15

コメントはまだありません »

No comments yet.

RSS feed for comments on this post. TrackBack URI

Leave a comment