javascript html dom
関連タイピング
-
html5の暗記用 <>を省いていてタイピングにしました
プレイ回数875英語長文564打 -
fputcsv()でファイルを作ってアップロード
プレイ回数861長文257打 -
基礎的なHTML
プレイ回数3722英語54打 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数1713610打 -
chatGPTに作らせた部分一致検索サイトです。
プレイ回数1061長文590打 -
JavaScript 暗記用です
プレイ回数3334英語長文1247打 -
ウェブプログラミング言語のタイピング練習ができます。
プレイ回数2万長文2819打 -
PHPMailerの省略練習
プレイ回数703313打
問題文
(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);