javascript html dom
html DOM要素
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | sofu | 2533 | E | 2.6 | 94.3% | 105.8 | 285 | 17 | 9 | 2026/04/08 |
| 2 | MIKARIN | 2208 | F+ | 2.2 | 96.9% | 125.0 | 285 | 9 | 9 | 2026/04/07 |
関連タイピング
-
html5の暗記用 <>を省いています
プレイ回数805 英語374打 -
基礎的なHTML
プレイ回数4276 英語54打 -
bootstrap5 border関係
プレイ回数121 英語473打 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数3680 610打 -
fputcsv()でファイルを作ってアップロード
プレイ回数879 長文257打 -
htmlのタグを入力
プレイ回数346 300秒 -
初心者向けです。
プレイ回数8517 英語546打 -
メソッド名やクラス名をタイピングしよう
プレイ回数290 長文英字60秒
問題文
ふりがな非表示
ふりがな表示
(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);