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


HTML Input Datetime autofocus用法及代碼示例


Datetime自動對焦屬性用於設置或返回Datetime字段的自動對焦。如果頁麵加載時datetime字段自動獲得焦點,則Datetime自動對焦屬性將返回true,否則返回false。 HTML自動聚焦屬性由Datetime自動聚焦屬性反映。

用法:

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

屬性值:


  • true | false:它用於指定頁麵加載時日期時間字段是否應獲得焦點。

以下示例程序旨在說明Datetime自動對焦屬性:
例:找出DateTime字段是否自動將焦點放在頁麵加載上。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Input Datetime autofocus Property in HTML 
  </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Input Datetime autofocus Property</h2> 
    <br> 
  
    <input type="datetime" 
           id="test_Datetime"
           autofocus> 
  
    <p>To find out whether the date time field automatically 
      gets focus on page load or not, 
      double click the "Check" button.</p> 
  
    <button ondblclick="My_Datetime()"> 
      Check 
  </button> 
  
    <p id="test"> 
  </p> 
  
    <script> 
        function My_Datetime() { 
            
            // Return the Datetime autofocus 
            // property Value. 
            var d = 
             document.getElementById( 
              "test_Datetime").autofocus; 
            
            document.getElementById("test").innerHTML = d; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

單擊按鈕後

支持的瀏覽器:

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


相關用法


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