「JavaScript」ParentNode.append()を使うサンプル

2020年12月1日

説明
ParentNode.append() メソッドは、Node オブジェクト、または
DOMString オブジェクトのセットを ParentNode の最後に追加します。

使用例
1.テキストの追加
let cft = document.createElement(“div")
cft.append(“study in arkgame.com")

console.log(cft.textContent)
結果
“study in arkgame.com"

2.要素の追加
let cft = document.createElement(“div")
let k = document.createElement(“p")
cft.append(k)

console.log(parent.childNodes)
結果
NodeList [ <p> ]

JavaScript

Posted by arkgame