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


HTML Button autofocus用法及代碼示例


HTML DOM中的Button autofocus屬性用於設置或返回在頁麵加載時按鈕是否應該獲得焦點。此屬性用於反映HTML自動對焦屬性。

用法:

  • 它用於返回自動對焦屬性。
    buttonObject.autofocus
  • 用於設置自動對焦屬性。
    buttonObject.autofocus = true|false
  • 屬性值:


    • true:它定義了按鈕元素獲得焦點。
    • false:它是默認值。它定義了Button元素沒有獲得焦點。

    返回值:它返回一個布爾值,該值表示Button元素獲得自動對焦,否則返回False。

    例:本示例返回按鈕自動對焦值。

    <!DOCTYPE html>  
    <html>  
      
    <head>  
        <title> 
            HTML DOM button autofocus Property  
        </title>  
    </head>  
      
    <body style="text-align:center">  
          
        <h1 style="color:green;">  
            GeeksforGeeks  
        </h1>  
          
        <h2> 
            HTML DOM button autofocus Property 
        </h2>  
          
        <!-- Assign id to the Button. -->
        <button id="GFG" autofocus> 
            Submit 
        </button> 
          
        <br><br>  
          
        <p> 
            Click on "button" Button to return 
            button autofocus Property. 
        </p> 
          
        <button onclick="Geeks()"> 
            button 
        </button>  
          
        <p id="sudo"></p>  
          
        <!-- Script to return button autofocus value -->
        <script>  
            function Geeks() {  
                  
                // Return Boolean value to represent Button.  
                var x = document.getElementById("GFG").autofocus;  
                document.getElementById("sudo").innerHTML = x;  
            }  
        </script>  
    </body>  
      
    </html>                    

    輸出:
    在單擊按鈕之前:

    單擊按鈕後:

    支持的瀏覽器:下麵列出了DOM Button autofocus屬性支持的瀏覽器:

    • 穀歌瀏覽器
    • Internet Explorer 10.0
    • Firefox
    • Opera
    • Safari


相關用法


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