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


HTML Input DatetimeLocal step用法及代码示例


HTML DOM中的Input DatetimeLocal Step属性用于设置或返回本地datetime字段的step属性的值。输入步长属性可用于在本地日期时间字段中以秒或毫秒为单位指定合法数字间隔。 step属性不能用于影响天,月,年,小时或分钟。

用法:

  • 它返回Input DatetimeLocal Step属性。
    datetimelocalObject.step
  • 它用于设置Input DatetimeLocal Step属性。
    datetimelocalObject.step = number

属性值:它包含单个属性值数字,该数字用于指定合法数字间隔(秒或毫秒)。


以下示例程序旨在说明HTML DOM中的DatetimeLocal步骤属性:

例:本示例将本地日期字段中的合法数字间隔更改为秒。

<!DOCTYPE html> 
<html> 
      
<head>  
    <title> 
        HTML DOM Input DatetimeLocal step Property 
    </title>  
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1>  
      
    <h2 style="font-family:Impact;"> 
        Input DatetimeLocal step Property 
    </h2> 
      
    <input type="datetime-local" id="Test_Datetime"> 
      
    <p> 
        To update the step, double click 
        the "Change Step" button. 
    </p> 
      
    <button ondblclick="My_DatetimeLocal()"> 
        Change Step 
    </button> 
      
    <p id="test"></p> 
      
    <script> 
        function My_DatetimeLocal() { 
            document.getElementById("Test_Datetime").step 
                    = "5"; 
                      
            document.getElementById("test").innerHTML 
                    = "The step attribute has been " 
                      + "changed to '5'."; 
        } 
    </script> 
</body> 
  
</html>                                                

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了Input DatetimeLocal step属性支持的浏览器:

  • 苹果Safari
  • Internet Explorer 10.0
  • Firefox
  • 谷歌浏览器
  • Opera


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM Input DatetimeLocal step Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。