javascript html dom

html DOM要素
関連タイピング
-
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数34万1071打 -
php の勉強中
プレイ回数3602長文331打 -
初級
プレイ回数8412長文526打 -
htmlの雛形覚え用
プレイ回数436英語長文258打 -
JavaScript 暗記用です
プレイ回数1826英語長文1567打 -
プレイ回数462長文英字265打
-
ブラウザで動くテトリスのコーディングです。
プレイ回数2762長文532打 -
JavaScript暗記用です
プレイ回数2451英語長文601打
問題文
ふりがな非表示
ふりがな表示
(const p=document.createElement("p");)
const p=document.createElement("p");
(const text=document.createTextNode("new text");)
const text=document.createTextNode("new text");
(p.appendChild(text);)
p.appendChild(text);
(const parent=document.getElementById("div1");)
const parent=document.getElementById("div1");
(parent.appendChild(p);)
parent.appendChild(p);
(const child=document.getElementById("p1");)
const child=document.getElementById("p1");
(parent.insertBefore(p,child);)
parent.insertBefore(p,child);
(child.remove();)
child.remove();
(parent.replaceChild(p,child);)
parent.replaceChild(p,child);