javascript html dom

順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
---|---|---|---|---|---|---|---|---|---|---|
1 | mikaroko | 2007 | F+ | 2.0 | 96.6% | 137.0 | 285 | 10 | 9 | 2025/07/02 |
関連タイピング
-
自作のハンバーガーメニューを作成しましょう!
プレイ回数3264英語長文721打 -
タイピングのついでにHTML5の練習もしちゃいましょう。
プレイ回数5307長文311打 -
javascriptの練習用です。
プレイ回数1万長文1106打 -
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数36万1071打 -
HTML5タグの使い方をタイピング練習のついでに覚えましょう
プレイ回数4676長文424打 -
webクリエイター試験上級までカバー
プレイ回数5712長文英字1629打 -
HTMLタグの入力練習
プレイ回数347英語230打 -
JavaScript 暗記用です
プレイ回数2829英語長文594打
問題文
(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);