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


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


HTML | <button> autofocus屬性用於指定頁麵加載時按鈕是否應自動獲得焦點。它是一個布爾屬性。

用法:

<button type="button" autofocus> 

例:本示例說明了Button元素中autofocus屬性的使用。


<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML |  
      <button>autofocus Attribute 
    </title> 
</head> 
  
<body style="text-align:center"> 
  
    <h1 style="color:green;">  
        GeeksforGeeks  
    </h1> 
  
    <h2>  
        HTML |   
      <button>autofocus Property  
    </h2> 
  
    <!-- Assign id to the Button. -->
    <button id="GFG"
            autofocus> 
        Submit 
    </button> 
  
    <br> 
</body> 
  
</html>

輸出:

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

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


相關用法


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