find()メソッド jQuery

jQuery

find()メソッド

構文

$(jQueryオブジェクト).find(引数);

find()メソッドの詳細

 動 作 

選択した要素(jQueryオブジェクト)の子孫要素のうち、引数に一致する要素に絞り込むメソッド。

 引 数 

find()メソッドを使ったコード例

 HTML 

<div class="find-box">  
  <button>btn1</button>
  <button>btn2</button>
  <button>btn3</button>  
</div>

 jQuery 

var $box=$('.find-box').find('button');
console.log($box[0]);
console.log($box[1]);
console.log($box[2]);

 実装 

See the Pen
find()
by roymoy (@roymoy)
on CodePen.

JavaScript・jQueryのおすすめ

おすすめ

 

スポンサードリンク

スポンサードリンク