我编写用于操作 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>
文本输入元素不在页面上创建,但相同的代码被放置在脚本标签中,没有功能工作