La propiedad DOM Input tel type en HTML DOM se utiliza para devolver el tipo de elemento de formulario del campo de entrada tel . Siempre devuelve el «tel» para un campo Tel. de entrada.
Sintaxis:
telObject.type
Valores devueltos: Devuelve un valor de string que representa el tipo de elemento de formulario del campo tel .
El siguiente programa ilustra la propiedad de tipo de tel de entrada en HTML DOM.
Ejemplo: Este ejemplo devuelve el tipo de elemento de formulario del campo tel de entrada.
HTML
<!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2> DOM Input Tel type property </h2> <legend> Phone Number: <input type="tel" id="mytel" value="6753682635" required> </legend> <br><br> <button onclick="myClick()"> submit! </button> <p id="demo" style="font-size:25px"></p> <script> function myClick() { var x = document.getElementById("mytel").type; document.getElementById("demo").innerHTML = x; } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Internet Explorer 10.0 +
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA