javascript html dom

html DOM要素
順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
---|---|---|---|---|---|---|---|---|---|---|
1 | ぱぴぷ | 2398 | F++ | 2.4 | 97.2% | 115.5 | 285 | 8 | 9 | 2025/04/25 |
関連タイピング
-
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数152610打 -
プログラミングで良く使う英単語、構文のタイピングです!
プレイ回数2904短文英字429打 -
記号の練習
プレイ回数534英語60秒 -
プレイ回数123760秒
-
Progateの復習用
プレイ回数2048長文1044打 -
JavaScript 暗記用です
プレイ回数2979英語長文1247打 -
自作のハンバーガーメニューを作成しましょう!
プレイ回数3180英語長文721打 -
htmlやcssのタイピングです。
プレイ回数6609英語長文120秒
問題文
ふりがな非表示
ふりがな表示
(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);