javascript html dom
html DOM要素
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | やちなり | 4045 | C | 4.0 | 98.9% | 69.7 | 285 | 3 | 9 | 2026/03/28 |
| 2 | sofu | 2533 | E | 2.6 | 94.3% | 105.8 | 285 | 17 | 9 | 2026/04/08 |
| 3 | MIKARIN | 2208 | F+ | 2.2 | 96.9% | 125.0 | 285 | 9 | 9 | 2026/04/07 |
関連タイピング
-
HTMLのタグを打とう!
プレイ回数1015 短文90秒 -
自作のハンバーガーメニューを作成しましょう!
プレイ回数4164 英語長文721打 -
プレイ回数524 長文312打
-
emmetのための備考欄
プレイ回数989 短文英字201打 -
JavaScript 暗記用です
プレイ回数2588 英語長文2218打 -
htmlの雛形覚え用
プレイ回数1214 英語長文258打 -
プログラミングで良く使う英単語、構文のタイピングです!
プレイ回数4164 短文英字429打 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数3385 610打
問題文
ふりがな非表示
ふりがな表示
(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);