javascript html dom

html DOM要素
順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
---|---|---|---|---|---|---|---|---|---|---|
1 | kuかかってこい | 4846 | B | 4.8 | 99.6% | 58.6 | 285 | 1 | 9 | 2025/07/20 |
2 | mikaroko | 2007 | F+ | 2.0 | 96.6% | 137.0 | 285 | 10 | 9 | 2025/07/02 |
関連タイピング
-
自作のハンバーガーメニューを作成しましょう!
プレイ回数3315英語長文721打 -
プログラミングでよく使う記号や構文を練習したい人向け
プレイ回数1万長文956打 -
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数36万1071打 -
基礎的なHTML
プレイ回数3347英語54打 -
自分学習用です
プレイ回数374長文185打 -
HTML5タグの使い方をタイピング練習のついでに覚えましょう
プレイ回数4709長文424打 -
htmlやcssのタイピングです。
プレイ回数6876英語長文120秒 -
プレイ回数130160秒
問題文
ふりがな非表示
ふりがな表示
(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);