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


HTML Select autofocus用法及代碼示例


HTML DOM中的Select autofocus屬性用於設置或返回是否在頁麵加載時自動使下拉列表具有焦點。如果下拉列表自動獲得焦點,則該屬性返回true,否則返回false。選擇自動對焦屬性反映了HTML自動對焦屬性。

返回自動對焦屬性的語法

selectObject.autofocus

設置自動對焦屬性的語法


selectObject.autofocus = true|false

屬性值

  • true:下拉列表會自動對焦。
  • false:下拉列表沒有得到關注。

以下示例程序旨在說明選擇自動對焦屬性:

示例1:查找下拉列表是否自動關注頁麵加載。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Select Autofocus Property in HTML 
  </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1> 
      GeeksforGeeks 
  </h1> 
    <h2> 
      Select Autofocus Property 
  </h2> 
    <br> 
  Select your preferred course from the drop-down list:
  
    <select id="Courses" autofocus> 
        <option value="C++">c++</option> 
        <option value="Placement">Placement</option> 
        <option value="Java">Java</option> 
        <option value="Python">Python</option> 
    </select> 
  
    <p> 
      To find out if the drop-down list  
      automatically gets focused upon page load 
      or not, double-click the "Check" button. 
  </p> 
    <button onclick="My_list()">Check</button> 
  
    <p id="test"></p> 
  
    <script> 
        function My_list() { 
            var d =  
                document.getElementById("Courses").autofocus; 
            document.getElementById("test").innerHTML = d; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

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

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


相關用法


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