javascript html dom

順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
---|---|---|---|---|---|---|---|---|---|---|
1 | ぱぴぷ | 2398 | F++ | 2.4 | 97.2% | 115.5 | 285 | 8 | 9 | 2025/04/25 |
関連タイピング
-
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数35万1071打 -
JavaScript暗記用です
プレイ回数2556英語長文601打 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数145610打 -
プログラミングで良く使う英単語、構文のタイピングです!
プレイ回数2889短文英字429打 -
JavaScript 暗記用です
プレイ回数1516英語長文1124打 -
戦国じゃんぶるdom's blogの読者のそこのキミ!いざ挑戦!
プレイ回数62630秒 -
webクリエイター試験上級までカバー
プレイ回数5665長文英字1629打 -
Progateの復習用
プレイ回数2046長文1044打
問題文
(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);