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


HTML Input DatetimeLocal max用法及代碼示例


Input DatetimeLocal max屬性用於設置或返回本地DateTime字段的max屬性值。 Input DatetimeLocal max屬性用於為本地DateTime字段指定日期和時間的最大值。 Input DatetimeLocal max屬性返回一個字符串,該字符串表示允許的最大日期和時間。

用法:

  • 要返回max屬性:
    inputdatetimelocalObject.max
  • 設置max屬性:
    inputdatetimelocalObject.max = YYYY-MM-DDThh:mm:ss.ms

屬性值:


  • YYYY-MM-DDThh:mm:ssTZD:它用於指定允許的最大日期和時間。
    • YYYY:指定年份。
    • MM:指定月份。
    • DD:指定月份中的某天。
    • T:如果還輸入時間,則指定分隔符。
    • hh:指定小時。
    • mm:指定分鍾。
    • ss:指定秒數。
    • ms:指定微秒。

以下示例程序旨在說明Datetimelocal max屬性:
例:獲取本地DateTime字段允許的最大日期和時間。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Input DatetimeLocal max Property in HTML 
  </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks 
  </h1> 
    <h2>Input DatetimeLocal max Property 
  </h2> 
    <br> 
  
    <p>The range of date accepted is 
      between 2019-02-18 10:30:55 and  
      2019-02-20 12:30:55. 
  </p> 
    
    <input type="datetime-local"
           id="Test_DatetimeLocal" 
           min="2019-02-18T10:30:55"
           max="2019-02-20T12:30:55"> 
  
    <p>to return the max range of the  
      datetimeLocal field, double click the  
      "Return Max" button.</p> 
    
  <button ondblclick="My_DatetimeLocal()"> 
      Return Max 
  </button> 
  
    <p id="test"></p> 
  
    <script> 
        function My_DatetimeLocal() { 
            var d = document.getElementById( 
              "Test_DatetimeLocal").max; 
            
            document.getElementById( 
              "test").innerHTML = d; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:

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


相關用法


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