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


HTML DOM Input DatetimeLocal用法及代碼示例


Input DatetimeLocal對象用於表示類型為“ datetime-local”的HTML <input>元素。輸入DatetimeLocal對象是HTML5中的新對象。

用法:

  • 要創建類型為“ datetime-local”的<input>元素:
    gfg = document.createElement("input") 
    gfg.setAttribute("type", "datetime-local");
    
  • 要訪問類型為“ datetime-local”的<input>元素:
    document.getElementById("datetimeLocal_object")

屬性值:

描述
autocomplete 它用於設置或返回日期時間字段的自動完成屬性的值。
autofocus 它用於設置或返回在頁麵加載時datetime字段是否應自動獲得焦點。
defaultValue 它用於設置或返回日期時間字段的默認值。
disabled 它用於設置或返回是否禁用了日期時間字段。
form 它用於返回對包含datetime字段的表單的引用。
list 它用於返回對包含datetime字段的數據列表的引用。
max 它用於設置或返回datetime字段的max屬性值。
min 設置或返回datetime字段的min屬性的值。
name 它用於設置或返回日期時間字段的名稱屬性的值。
readOnly 它用於設置或返回datetime字段是否為隻讀。
required 它用於設置或返回在提交表單之前是否必須填寫datetime字段。
step 它用於設置或返回datetime字段的step屬性的值。
type 它用於返回datetime字段是哪種類型的表單元素。
value 它用於設置或返回日期時間字段的value屬性的值。

輸入DatetimeLocal對象方法:

  • stepDown():它用於將datetime字段的值遞減指定的數字。
  • stepUp():它用於將datetime字段的值增加指定的數字。

以下示例程序旨在說明Datetime對象:
示例1:創建一個類型為=“ datetime-local”的<input>元素。



<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Input DatetimeLocal Object</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Input DatetimeLocal Object</h2> 
  
    <p>Double Click the "Create" button to  
      create a DatetimeLocal field.</p> 
  
    <button ondblclick="Create()"> 
      Create 
  </button> 
  
    <script> 
        function Create() { 
            
            //  Create input element type "datetime-local" 
            var c = document.createElement("INPUT"); 
            c.setAttribute("type", "datetime-local"); 
            c.setAttribute("value", "2019-07-02T25:32Z"); 
            document.body.appendChild(c); 
        } 
    </script> 
  
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

示例2:訪問類型=“ datetime-local”的<input>元素。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Input Datetime Object</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Input Datetime Object</h2> 
  
    <input type="datetime"
           id="test" 
           value="2019-07-02T25:32Z"> 
  
    <p>Double Click the "Access"  
      button to access a Datetime field.</p> 
  
    <button ondblclick="Access()">Access</button> 
  
    <p id="check"></p> 
  
    <script> 
        function Access() { 
            
            // Accessing input element type value 
            var a = document.getElementById( 
              "test").value; 
            
            document.getElementById( 
              "check").innerHTML = a; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:

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




相關用法


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