javascript html dom
html DOM要素
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | やちなり | 4045 | C | 4.0 | 98.9% | 69.7 | 285 | 3 | 9 | 2026/03/28 |
| 2 | よっぴ | 3505 | D+ | 3.5 | 97.9% | 79.6 | 285 | 6 | 9 | 2026/03/01 |
| 3 | sofu | 2533 | E | 2.6 | 94.3% | 105.8 | 285 | 17 | 9 | 2026/04/08 |
| 4 | MIKARIN | 2208 | F+ | 2.2 | 96.9% | 125.0 | 285 | 9 | 9 | 2026/04/07 |
関連タイピング
-
プログラミングでよく使う記号や構文を練習したい人向け
プレイ回数1万 長文956打 -
公開されている実践的な javascript プログラムです
プレイ回数1118 英語長文2780打 -
読み方の勉強です。
プレイ回数3719 短文英字171打 -
基礎的なHTML
プレイ回数4039 英語54打 -
html5暗記用 <>を省いています
プレイ回数775 英語長文694打 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数3083 610打 -
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数37万 1071打 -
プログラミングで良く使う英単語、構文のタイピングです!
プレイ回数4097 短文英字429打
問題文
ふりがな非表示
ふりがな表示
(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);