javascript html dom
html DOM要素
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | よっぴ | 3505 | D+ | 3.5 | 97.9% | 79.6 | 285 | 6 | 9 | 2026/03/01 |
関連タイピング
-
プログラミングで良く使う英単語、構文のタイピングです!
プレイ回数3898 短文英字429打 -
JavaScript 暗記用です
プレイ回数1512 英語長文684打 -
htmlの雛形覚え用
プレイ回数978 英語長文258打 -
記号の練習
プレイ回数577 英語60秒 -
タイピングのついでにHTML5の練習もしちゃいましょう。
プレイ回数5446 長文311打 -
bootstrap table
プレイ回数162 英語295打 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数2529 610打 -
JavaScript 暗記用です
プレイ回数2413 英語長文2218打
問題文
ふりがな非表示
ふりがな表示
(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);