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


HTML <textarea> autofocus屬性用法及代碼示例


HTML <textarea> autofocus屬性用於指定在頁麵加載時textarea字段應自動獲得焦點。它是一個布爾屬性。

用法:

<textarea autofocus>

例:本示例說明了Textarea元素中自動對焦屬性的使用。


<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      HTML textarea autofocus Attribute 
  </title> 
</head> 
  
<body style="text-align:center"> 
    <h1 style="color:green;"> 
      GeeksforGeeks 
  </h1> 
    <h2> 
      HTML <Textarea>  
      autofocus Attribute 
  </h2> 
        <textarea id="geeks"
                  autofocus> 
          write something here---- 
  </textarea> 
</body> 
  
</html>

輸出:

支持的瀏覽器:HTML | <Textarea>自動對焦屬性如下所示:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <textarea> autofocus Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。