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


HTML Input Date stepUp()用法及代碼示例


HTML DOM中的輸入日期stepUp()方法用於將日期字段的值增加指定的數字。輸入日期stepUp()方法隻能用於日期,而不能用於月份和年份。

用法:

inputdateObject.stepUp( number )

參數:此方法接受單個參數編號,該編號用於指定日期字段應增加的天數。


以下示例程序旨在說明HTML DOM中的Input Date stepUp方法:

例:本示例使用輸入日期stepUp()方法將日期字段的值增加2天。

<!DOCTYPE html> 
<html> 
  
<head>  
    <title> 
        Input Date stepUp Property 
    </title>  
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1>  
      
    <h2 style="text-align:center;"> 
        Input Date stepUp Property 
    </h2> 
      
    <input type="date" id="Test_Date"> 
      
    <p> 
        To increase the step, double click 
        the "Increase Step" button. 
    </p> 
      
    <button ondblclick="My_Date()"> 
        Increase Step 
    </button> 
      
    <!-- Script to use Input Date stepUp() Method -->
    <script> 
        function My_Date() { 
            document.getElementById("Test_Date").stepUp(2); 
        } 
    </script> 
</body> 
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器

  • 蘋果Safari
  • Internet Explorer 12.0
  • Firefox 17.0
  • 穀歌瀏覽器
  • Opera


相關用法


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