端くれプログラマの備忘録 jQuery [jQuery] thisの子要素を取得する

[jQuery] thisの子要素を取得する

$("foo",this)
$(this).children("foo")
$(this).find("foo")

サンプル

<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/