最新的Web開發教程
 

輸入日期stepUp() Method

輸入日期對象參考 輸入日期對象

5天增加一個日期字段的值:

document.getElementById("myDate").stepUp(5);
試一試»

定義和用法

stepUp()方法通過增加指定數目的日期欄的值。

這種方法只對天的影響(not month and year)

提示:要遞減值,使用stepDown()方法。


瀏覽器支持

方法
stepUp() 12.0 不支持

句法

inputdateObject .stepUp( number )

參數值

參數 描述
number 需要。 指定日的日期字段應該增加的量。

如果省略,天都被加"1"

技術細節

返回值: 無返回值

更多示例

加1天(default)

document.getElementById("myDate").stepUp();
試一試»

<輸入日期對象