1 2 3 |
$("foo",this) $(this).children("foo") $(this).find("foo") |
サンプル
1 2 3 4 5 6 7 8 9 10 11 |
<script> $(function() { $(".item").click(function() { $('.notify',this).text(' was clicked!'); }); }); </script> <div class="item">Item1 <span class="notify"></span></div> <div class="item">Item2 <span class="notify"></span></div> <div class="item">Item3 <span class="notify"></span></div> |
参考サイト
jQueryでthisの子要素を取得するやり方いろいろ | Base Views
http://baseviews.com/program/jquery-get-child-elements-of-this.html
【jQuery】 $(this)の親要素、子要素、隣接要素を指定する | WEB制作ブログ
https://www.markernet.co.jp/blog/2014/08/22/post-2493/