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


HTML Input DatetimeLocal stepUp()用法及代码示例


HTML DOM中的Input DatetimeLocal stepUp()方法用于将Local datetime字段的值增加指定的数字。 Input DatetimeLocal stepUp()方法只能在值Minutes上使用。年,月,日,小时,秒或毫秒不受stepUp()方法的影响。

用法:

datetimelocalObject.stepUp( number )

参数:此方法接受单个参数号,该参数号用于指定本地datetime字段应增加的分钟数。


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

例:本示例使用stepUp()方法将分钟的值增加2。

<!DOCTYPE html> 
<html> 
      
<head>  
    <title> 
        Input DatetimeLocal stepUp() Method 
    </title>  
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1>  
      
    <h2 style="font-family:Impact;">  
        Input DatetimeLocal stepUp() Method 
    </h2> 
      
    <input type="datetime-local" id="test_DatetimeLocal"> 
      
    <p> 
        To increase the value of the datetimeLocal field 
        by 2minutes, double click the "Update" button. 
    </p> 
      
    <button ondblclick="My_DatetimeLocal()"> 
        Update 
    </button> 
      
    <!-- Script to use stepUp() method -->
    <script> 
        function My_DatetimeLocal() { 
            document.getElementById("test_DatetimeLocal").stepUp(2); 
        } 
    </script> 
</body> 
  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了Input DatetimeLocal stepUp()方法支持的浏览器:

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


相关用法


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