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


HTML Input Date step用法及代碼示例


輸入日期步驟屬性用於設置或返回日期字段的步驟屬性的值。輸入步長屬性可用於指定用戶在日期字段中打開日曆時要選擇的法定日期間隔。

用法:

  • 要返回step屬性:
    inputdateObject.step
  • 設置step屬性:
    inputdateObject.step = number

屬性值


  • number:用於指定合法的日期間隔,默認設置為1。

以下示例程序旨在說明Date步驟屬性:
例:更改法定的時間間隔。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Input Date Step Property in HTML 
  </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1> 
      GeeksforGeeks 
  </h1> 
    <h2> 
      Input Date Step Property 
  </h2> 
    <br> 
  
    <input type="date"
           id="Test_Date"> 
  
    <p>To increase the step so that the 
      user can only select every second  
      day in the calendar, double click  
      the "Update Step" button. 
    </p> 
  
    <button ondblclick="My_Date()"> 
      Update Step 
  </button> 
  
    <p id="test"></p> 
  
    <script> 
        function My_Date() { 
            document.getElementById( 
              "Test_Date").step = "2"; 
            
            document.getElementById( 
              "test").innerHTML = 
              "Step has been set to '2'."; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

單擊按鈕後

支持的瀏覽器:

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


相關用法


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