javascript html dom

順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
---|---|---|---|---|---|---|---|---|---|---|
1 | mikaroko | 2007 | F+ | 2.0 | 96.6% | 137.0 | 285 | 10 | 9 | 2025/07/02 |
関連タイピング
-
自作のハンバーガーメニューを作成しましょう!
プレイ回数3233英語長文721打 -
基礎的なHTML
プレイ回数3290英語54打 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数332610打 -
プログラミングで良く使う英単語、構文のタイピングです!
プレイ回数3057短文英字429打 -
貴方は、JK JC JSのオタクか!?
プレイ回数19462打 -
htmlやcssのタイピングです。
プレイ回数6783英語長文120秒 -
戦国じゃんぶるdom's blogの読者のそこのキミ!いざ挑戦!
プレイ回数63030秒 -
J
プレイ回数10330秒
問題文
(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);