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 |
関連タイピング
-
公開されている実践的な javascript プログラムです
プレイ回数1071 英語長文2780打 -
HTMLのタグを打とう!
プレイ回数934 短文90秒 -
JavaScript暗記用です
プレイ回数2961 英語長文601打 -
初心者向けです。
プレイ回数7975 英語546打 -
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数37万 1071打 -
基礎的なHTML
プレイ回数3983 英語54打 -
htmlのタグを入力
プレイ回数258 300秒 -
プログラミングで良く使う英単語、構文のタイピングです!
プレイ回数3972 短文英字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);