javascript html dom
関連タイピング
-
プログラミングで良く使う英単語、構文のタイピングです!
プレイ回数3589短文英字429打 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数1875610打 -
html5の暗記用 <>を省いていてタイピングにしました
プレイ回数901英語長文564打 -
htmlの雛形覚え用
プレイ回数856英語長文258打 -
自作のハンバーガーメニューを作成しましょう!
プレイ回数3739英語長文721打 -
JavaScript 暗記用です
プレイ回数2525英語長文1432打 -
htmlやcssのタイピングです。
プレイ回数7211英語長文120秒 -
html5暗記用 <>を省いています
プレイ回数1013英語長文1245打
問題文
(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);