HTML | <textarea> dirname Atributo

El atributo HTML <textarea> dirname se utiliza para habilitar la dirección del texto del campo Textarea después de enviar el formulario. El valor del atributo dirname debe ser el nombre del campo de entrada y el área de texto, seguido de “.dir”

Sintaxis: 

<textarea name="myname" dirname="myname.dir"></textarea>

Valores de atributos:

  • dir.name Especifica que se enviará la dirección del texto del Textarea.

El siguiente ejemplo ilustra el uso del atributo dirname en el elemento Textarea. 

Ejemplo: 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML <textarea> dirname Attribute
    </title>
    <style>
        h1 {
            color: green;
        }
    </style>
</head>
 
<body>
 
    <form>
        <h1>
        GeeksforGeeks
    </h1>
        <h2>
        HTML | Textarea dirname attribute
    </h2>
        <Textarea name="fname"
                  dirname="fname.dir"
                  width="190px">
 
        </Textarea>
 
        <p>
            After the Submission of the form,
          the text direction of the textarea field
          will also be submitted.
        </p>
    </form>
 
</body>
 
</html>

Producción: 

 

Navegadores compatibles: los navegadores compatibles con el atributo HTML <textarea> dirname se enumeran a continuación:

  • Google cromo 17
  • Borde 79
  • safari de manzana 6
  • Ópera 12.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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *