「JavaScript」DOM属性のNode.firstChildプロパティを取得する

環境
Google Chrome 100.0.4896.88
Windows10 64bit

書式
1.getElementById() メソッド
Document の getElementById() メソッドは、 id プロパティが指定された文字列に一致する要素を表す Element オブジェクトを返します。
2.Node.firstChild
firstChild は Node インターフェイスの読み取り専用プロパティで、ツリー内におけるこのノードの最初の子、またはこのノードに子がない場合は null を返します。

使用例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>

<div id="tt">study skill become smart</div>

<script>
cft=document.getElementById("tt");
document.write(cft.firstChild.nodeValue);
</script>

</body>
</html>

実行結果
「firstChild.nodeValue」を使って、<div id="tt">タグのテキストノードの値を取得します。

Html

Posted by arkgame