「jQuery」.contentsで指定要素の全子要素を取得する

2022年2月18日

環境
jquery 3.6.0

書式
$(セレクタ名).contents().css(“属性名", “値");
.contents() を使用してテキストやコメントも対象とした子要素を取得します。

使用例

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(function(){
  //ボタンを押すと、id="cft"要素の子要素の文字色を赤にする
  $('#btnChg').click(function(){
    $("#cft").contents().css("color", "red");
  });
});
</script>
</head>
<body>
 <div id="cft"><b>東京</b><span style="color:green"> 大阪</span> 福岡
 </div>
 <p><input type="button" id="btnChg" value="検証"></p>
</body>
</html>

結果
ボタンを押すと、id="cft"要素の子要素の文字色を赤にします。

jQuery

Posted by arkgame