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


HTML Input DatetimeLocal name用法及代碼示例


Input DatetimeLocal name屬性用於設置或返回datetimeLocal字段的name屬性的值。可以通過名稱屬性來標識已提交到服務器的表單數據。 name屬性還用於使用Javascript在客戶端引用表單數據。

用法:

  • 要返回name屬性:
    datetimelocalObject.name
  • 設置名稱屬性:
    datetimelocalObject.name

屬性值


  • name:它用於指定datetimeLocal字段的名稱。

以下示例程序旨在說明DatetimeLocal名稱屬性:
例:獲取datetimeLocal字段的名稱。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
    Input DatetimeLocal name 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 name Property 
  </h2> 
      
  <br> Date of Birth:
  <input type="datetime-local" 
         id="Test_DatetimeLocal" 
         name="DOB"> 
    
  <p>To display the value of the name  
    attribute of the datetimeLocal  
    field, double-click the 
    "Return Name" button. 
  </p> 
  
    <button ondblclick="My_DatetimeLocal()"> 
      Return Name 
  </button> 
  
    <p id="test"></p> 
  
    <script> 
        function My_DatetimeLocal() { 
            
          var n = document.getElementById( 
              "Test_DatetimeLocal").name; 
            
            document.getElementById( 
              "test").innerHTML = n; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:

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


相關用法


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