jquery contentsメソッドを使って要素のテキストノードも含め全子要素を取得する
jqueryでcontentsメソッドを使うと要素の全ての子要素を取得することができます。ここでは、 要素の全ての子要素を取得するまでのサンプルコードを記述してます。
環境
- OS windows10 pro 64bit
- Apache 2.4.43
※windows10にApacheのインストールはこちら
contents使い方
ボタンをクリックするとid「test」の子要素全てのフォントカラーを変更するサンプルコードとなります。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>mebeeサンプル</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">
<link rel="stylesheet" href="https://unpkg.com/bootstrap-material-design@4.1.1/dist/css/bootstrap-material-design.min.css" integrity="sha384-wXznGJNEXNG1NFsbm0ugrLFMQPWswR3lds2VeinahP8N0zJw9VWSopbjv2x7WCvX" crossorigin="anonymous">
<script src="http://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<style>
.container {
margin: 0 auto;
margin-top: 300px;
display: flex;
flex-direction: column;
align-items: center;
font-size: 30px;
}
</style>
<script>
$(function(){
$('.btn').click(function(){
$("#test").contents().css("color", "#3EB810");
});
});
</script>
<body>
<div class="container">
<div id="test" class="alert alert-info" role="alert">
親要素<strong>子要素</strong>親要素<strong>子要素</strong>
</div>
<button type="button" class="btn btn-outline-success">変換</button>
</div>
</body>
</html>
実行結果を確認すると、子要素の全てのフォントカラーが変更されていることが確認できます。
-
前の記事
javascript 配列を結合して新しい配列を作成する 2020.09.01
-
次の記事
javascript オブジェクトの値を全てhtmlで表示する 2020.09.02
コメントを書く