1、描述
JavaScript date setDate()
方法根据本地时间设置指定的日期。
2、语法
它的语法如下:
date.setDate( dayValue )
3、参数
DayValue: 从1到31日的整数,代表月份中的一天。
4、使用示例
<html>
<head>
<title>JavaScript setDate Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date( "Aug 18, 2021 20:10:03" );
dt.setDate( 24 );
document.write( dt );
</script>
</body>
</html>
5、输出
Tue Aug 24 2021 20:10:03 GMT+0800 (中国标准时间)