JavaScript date
时间: 2023-10-14 21:04:15 浏览: 82
JavaScript中的日期对象(Date)用于处理日期和时间。您可以使用Date对象来创建、操作和显示日期和时间。
以下是一些常的JavaScript日期操作:
1. 创建日期对象:
```javascript
var now = new Date(); // 当前日期和时间
var specificDate = new Date('2022-01-01'); // 指定日期
var specificTime = new Date(2022, 0, 1, 12, 0, 0); // 指定年、月、日、时、分、秒
```
2. 获取日期和时间:
```javascript
var year = now.getFullYear(); // 年份(4位数)
var month = now.getMonth(); // 月份(0-11)
var day = now.getDate(); // 日期(1-31)
var hour = now.getHours(); // 小时(0-23)
var minute = now.getMinutes(); // 分钟(0-59)
var second = now.getSeconds(); // 秒钟(0-59)
var milliseconds = now.getMilliseconds(); // 毫秒(0-999)
```
3. 设置日期和时间:
```javascript
now.setFullYear(2023); // 设置年份
now.setMonth(11); // 设置月份(0-11)
now.setDate(31); // 设置日期(1-31)
now.setHours(23); // 设置小时(0-23)
now.setMinutes(59); // 设置分钟(0-59)
now.setSeconds(5
阅读全文