LoginSignup
0
0

More than 5 years have passed since last update.

jQuery関数への第二パラメータとしてコンテキスト参照を渡す

Last updated at Posted at 2016-11-09

以下参照

jquery.js
// <p>要素から見つかった<em>ワードの合計数を出力する
window.alert($('p').find('em').length + ' italic words');

// 以下コンテキスト参照で上記コードと等価
window.alert($('em', $('p')).length + ' italic words');
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