javascript html dom
html DOM要素
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | よっぴ | 3505 | D+ | 3.5 | 97.9% | 79.6 | 285 | 6 | 9 | 2026/03/01 |
関連タイピング
-
基礎的なHTML
プレイ回数3893 英語54打 -
Progateの復習用
プレイ回数2079 長文1044打 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数2511 610打 -
htmlの雛形覚え用
プレイ回数974 英語長文258打 -
html5暗記用 <>を省いています
プレイ回数1051 英語長文1245打 -
html5暗記用 <>を省いています
プレイ回数754 英語長文694打 -
htmlの冒頭部分です。
プレイ回数1102 英語60秒 -
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数37万 1071打
問題文
ふりがな非表示
ふりがな表示
(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);