jQuery findメソッドで孫要素を検索して操作する
環境
Google Chrome 111.0.5563.65(Official Build)
Windows 10 Home 64bit
jquery 3.6.3
書式
$(“.クラス名").find(“.親クラス名 .子クラス名").css(属性, 値);
findメソッドを使って孫要素を検索して操作します。
使用例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script> <script> $(document).ready(function(){ $("#btnchk").click(function () { $(".cft").find(".pA .sA").css("color", "green"); }); }); </script> </head> <body> <div class="cft"> <p>tokyo</p> <p class="pA">oosaka <span class="sA">9</span></p> </p> </div> <input type="button" id="btnchk" value="確認" /> </body> </html>
実行結果
「確認」ボタンを押すと、
「cft」を起点にして、findメソッドで4行目の子要素の「pA」のさらに下にある孫要素の「sA」を指定して文字の色を緑にします。