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


HTML Input Date max用法及代碼示例


Input Date max屬性用於設置或返回日期字段的max屬性的值。 max屬性返回一個字符串,該字符串表示允許的最大日期。

用法:

  • 要返回max屬性:
    inputdateObject.max
  • 設置max屬性:
    inputdateObject.max = YYYY-MM-DD

屬性值:


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

以下示例程序旨在說明Date max屬性:

獲取日期字段允許的最大日期。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Input Date 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 Date max Property</h2> 
    <br> 
  
    <p>The range of date accepted is between 2019-02-18 and 2019-02-20:
        <input type="date" id="Test_Date" min="2019-02-18" max="2019-02-20"> 
  
        <p>to return the max range of the date field, 
          double click the "Return Max" button.</p> 
  
        <button ondblclick="My_Date()">Return Max</button> 
  
        <p id="test"></p> 
  
        <script> 
            function My_Date() { 
                var d = document.getElementById("Test_Date").max; 
                document.getElementById("test").innerHTML = d; 
            } 
        </script> 
  
</body> 
  
</html>

輸出:

單擊按鈕後

支持的Web瀏覽器:

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


相關用法


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