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


HTML Input DatetimeLocal min用法及代碼示例


Input DatetimeLocal min屬性用於設置或返回datetimeLocal字段的min屬性值。它用於為datetimeLocal字段指定日期和時間的最小值。它返回一個字符串,該字符串表示允許的最小日期和時間。

用法:

  • 它返回Input DatetimeLocal min屬性。
    inputdatetimelocalObject.min
  • 它用於設置Input DatetimeLocal min屬性。
    datetimelocalObject.min = YYYY-MM-DDThh:mm:ss.ms

屬性值:它接受屬性值YYYY-MM-DDThh:mm:ssTZD。它用於指定允許的最小日期和時間。


  • YYYY:指定年份。
  • MM:指定月份。
  • DD:指定月份中的某天。
  • T:如果還輸入時間,則指定分隔符。
  • hh:指定小時。
  • mm:指定分鍾。
  • ss:指定秒數。
  • ms:指定毫秒。

以下示例程序旨在說明HTML DOM中的DatetimeLocal min屬性:

例:本示例返回datetimeLocal字段允許的最小datetime。

<!DOCTYPE html> 
<html> 
      
<head>  
    <title> 
        Input Datetimelocal min Property in HTML 
    </title>  
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1>  
    <h2 style="font-family:Impact;"> 
        Input Datetimelocal min 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 min range of the datetimeLocal 
        field, double click the "Return Min" button. 
    </p> 
      
    <button ondblclick="My_DatetimeLocal()"> 
        Return Min 
    </button> 
      
    <p id="test"></p> 
      
    <!-- Script to return Input Datetimelocal 
        min value -->
    <script> 
        function My_DatetimeLocal() { 
            var d = document.getElementById("Test_DatetimeLocal").min; 
            document.getElementById("test").innerHTML = d; 
        } 
    </script> 
</body> 
  
</html>                                                     

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了Input DatetimeLocal min屬性支持的瀏覽器:

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


相關用法


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