javascript html dom

html DOM要素
順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
---|---|---|---|---|---|---|---|---|---|---|
1 | kuかかってこい | 4846 | B | 4.8 | 99.6% | 58.6 | 285 | 1 | 9 | 2025/07/20 |
2 | mikaroko | 2007 | F+ | 2.0 | 96.6% | 137.0 | 285 | 10 | 9 | 2025/07/02 |
関連タイピング
-
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数36万1071打 -
自作のハンバーガーメニューを作成しましょう!
プレイ回数3388英語長文721打 -
htmlのタグを入力
プレイ回数55300秒 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数617610打 -
HTMLのタグを打とう!
プレイ回数778短文90秒 -
プレイ回数131560秒
-
初心者向けです。
プレイ回数7334英語546打 -
JavaScript 暗記用です
プレイ回数3084英語長文1247打
問題文
ふりがな非表示
ふりがな表示
(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);