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 |
関連タイピング
-
html5の暗記用 <>を省いていてタイピングにしました
プレイ回数790 英語249打 -
html5の暗記用 <>を省いています
プレイ回数786 英語374打 -
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数37万 1071打 -
chatGPTに作らせた部分一致検索サイトです。
プレイ回数1095 長文590打 -
Vue.js 3 Transition 自分暗記用
プレイ回数253 英語長文364打 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数2741 610打 -
HTMLの超基本を練習できます!!
プレイ回数1579 118打 -
JavaScript 暗記用です
プレイ回数2194 英語長文1567打
問題文
ふりがな非表示
ふりがな表示
(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);