DOMオブジェクトを操作するための関数を作成します。この関数は、特定のIDを持つ要素を検索し、特定のIDを持つ要素に新しい子要素を追加する必要があります。
<html>
<head>
<title> Text </title>
<meta charset="utf-8">
</head>
<body id="tbody">
<script>
function add(){
el = document.getElementById("testform");
var nf=document.createElement("input");
nf.type="text";
el.appendChild(nf);
}
</script>
<p>
<form id="testform">
<button onclick="add();"> create</button>
</form>
</p>
</body>
</html>
テキスト入力の要素はページ上に作成されませんが、同じコードが関数作業なしでスクリプトタグに配置されます