Javascript examples for DOM HTML Element:Input Text
You can create an <input> element with type="text" by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a Text Field</button> <script> function myFunction() {// w w w. j ava2 s. c o m var x = document.createElement("INPUT"); x.setAttribute("type", "text"); x.setAttribute("value", "Hello World!"); document.body.appendChild(x); } </script> </body> </html>