Javascript examples for DOM HTML Element:Input Number
You can create an <input> element with type="number" by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a Number field</button> <script> function myFunction() {//from w ww . j a v a2 s.c om var x = document.createElement("INPUT"); x.setAttribute("type", "number"); x.setAttribute("value", "12345"); document.body.appendChild(x); } </script> </body> </html>