当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML <textarea> dirname属性用法及代码示例


HTML <textarea> dirname属性用于在提交表单后启用Textarea字段的文本方向。 dirname属性的值必须是输入字段和textarea的名称,后跟“.dir”。

用法:

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

属性值:


  • 它指定将提交文本区域的文本方向。

下面的示例说明了Textarea元素中dirname属性的用法。
例:

<!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>

输出:

支持的浏览器:下面列出了HTML <textarea> dirname属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • 苹果Safari
  • Opera


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <textarea> dirname Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。