JavaScript 参考手册
HTML DOM Input Text 对象
你可以通过 document.createElement() 方法来创建 type="text" 的 <input> 元素
源代码:
点击运行 »
<p>点击按钮创建文本域。</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var x = document.createElement("INPUT"); x.setAttribute("type", "text"); x.setAttribute("value", "Hello World!"); document.body.appendChild(x); } </script>
运行结果:
点击运行 »