当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript setDate()方法
The setDate() method is used to set the day of the month.
setDate() 方法可用来设置日期。
dateObject.setDate(day) |
Parameter 参数 | Description 描述 |
---|---|
day | Required. A numeric value (from 1 to 31) that represents a day in a month 必选项。代表日期的值(从1到31) |
Note: This method is always used in conjunction with a Date object.
注意点:这个方法得结合Date对象使用
In this example we set the day of the current month to 15 with the setDate() method:
在这个举例中我们使用setDate方法将当前日期设置为15号:
<script type="text/javascript"> var d = new Date() </script> |
The output of the code above will be:
输出的结果为:
setDate()
How to use setDate() to set the day of the current month.
怎样使用setDate()来设置当前日期号。