javascript html dom

順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
---|---|---|---|---|---|---|---|---|---|---|
1 | ぱぴぷ | 2398 | F++ | 2.4 | 97.2% | 115.5 | 285 | 8 | 9 | 2025/04/25 |
関連タイピング
-
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数35万1071打 -
htmlやcssのタイピングです。
プレイ回数6597英語長文120秒 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数149610打 -
プログラミングで良く使う英単語、構文のタイピングです!
プレイ回数2894短文英字429打 -
JavaScript 暗記用です
プレイ回数1709英語長文770打 -
JavaScript 暗記用です
プレイ回数1444英語長文687打 -
html5暗記用 <>を省いています
プレイ回数963英語長文1245打 -
基礎的なHTML
プレイ回数3217英語54打
問題文
(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);