當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。