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


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


HTML DOM中的輸入周stepUp()方法用於將周字段的值增加給定數字。這種方法隻會增加幾周而不是幾年的價值。

用法:

weekObject.stepUp( number )

參數:它接受強製的單個參數編號。它指定要增加的星期數。默認情況下,周數增加1。


返回值:它不返回任何值。

例:本示例使用輸入周stepUp()方法將周增加2。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Week stepUp() Method 
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Week stepUp() Method</h2>  
      
    <form id="myGeeks"> 
        <input type="week" id="week_id" name="geeks"
            value="2019-W03">  
    </form><br> 
      
    <button onclick="myGeeks()"> 
        Click Here! 
    </button>  
      
    <!-- Script to increment the week -->
    <script>  
        function myGeeks() {  
            document.getElementById("week_id").stepUp(2) ; 
        }  
    </script>  
</body>  
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Input Week stepUp()方法支持的瀏覽器:

  • 穀歌瀏覽器
  • Internet Explorer 12.0
  • Opera
  • Safari


相關用法


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