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


HTML Input FileUpload autofocus用法及代碼示例


HTML DOM中的Input FileUpload autofocus屬性用於設置或返回在頁麵加載時文件上傳按鈕是否應自動獲得焦點。

用法:

  • 返回自動對焦屬性:
    fileuploadObject.autofocus
  • 設置自動對焦屬性:
    fileuploadObject.autofocus=true|false

屬性值:


  • true:文件上傳按鈕變得集中
  • false:文件上傳按鈕未聚焦

返回值:

  • 它返回一個布爾值,該布爾值表示該上載按鈕處於聚焦狀態或何時聚焦。

示例1:返回自動對焦屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1>Geeks for Geeks</h1> 
        <input type="file"
               id="myFile"
               autofocus> 
  
        <p id="demo"> 
      </p> 
  
        <button onclick="myFunction()"> 
          Click 
      </button> 
  
        <script> 
            function myFunction() { 
                var x =  
                    document.getElementById( 
                      "myFile").autofocus; 
                
                document.getElementById( 
                  "demo").innerHTML = x; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:
點擊前:

點擊後:

示例2:設置自動對焦屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1> 
          Geeks for Geeks 
      </h1> 
        <input type="file"
               id="myFile"> 
  
        <p id="demo"> 
      </p> 
  
        <button onclick="myFunction()"> 
          Click 
      </button> 
  
        <script> 
            function myFunction() { 
                var x =  
                    document.getElementById( 
                      "myFile").autofocus =  
                    "true"; 
                
                document.getElementById( 
                  "demo").innerHTML = x; 
            } 
        </script> 
  </center> 
  
</body> 
  
</html>

輸出:
點擊前:

點擊後:

支持的瀏覽器:

  • 穀歌瀏覽器
  • 火狐瀏覽器
  • Edge
  • Opera
  • Safari


相關用法


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