La propiedad de tipo Textarea en HTML DOM se utiliza para devolver el tipo de elemento de formulario del campo Textarea. Tenga en cuenta que siempre devolverá «área de texto» para un objeto de área de texto.
Sintaxis:
textareaObject.type
Valor devuelto: Devuelve un valor de string que representa el tipo de elemento de formulario del campo Textarea.
Ejemplo: El siguiente programa ilustra la propiedad de tipo Textarea en HTML DOM.
HTML
<!DOCTYPE html> <html> <body style="text-align:center"> <h1 style="color: green;"> GeeksforGeeks </h1> <b>DOM Textarea type Property</b> <br><br> <!-- Assigning id to textarea. --> <textarea id="myGeeks" rows="5" autofocus> GeeksForGeeks. A computer science portal for Geeks. </textarea> <br><br> <button onclick="myGeeks()">Submit</button> <p id="sudo" style="font-size:20px;color:green;"></p> <script> function myGeeks() { // Get the type of textarea var type = document.getElementById("myGeeks").type; // Set the type to the innerHTML document.getElementById("sudo").innerHTML = type; } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google cromo 1
- Borde 12
- explorador de Internet 5
- Firefox 1
- Ópera 12.1
- Safari 1
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA