当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。