js获取当前时间,格式是2024-10-24
时间: 2024-11-05 17:34:24 浏览: 16
JS获取当前日期时间-kaic
在JavaScript中,你可以使用`Date`对象来获取当前的时间,并通过其内置的方法将其格式化为指定的形式。以下是一个简单的例子:
```javascript
let now = new Date();
let formattedDate = now.getFullYear() + '-' + (now.getMonth()+1) + '-' + now.getDate(); // JavaScript月份是从0开始计数的,所以加1
console.log(formattedDate);
```
这段代码会输出类似 `2024-10-24` 格式的当前日期。如果你需要特定的时间部分,如小时、分钟和秒,可以添加更多的格式化操作。
如果你想让日期时间一起展示,例如 `2024-10-24 15:30:00`,你可以这样做:
```javascript
let timeFormat = now.getHours() + ':' + now.getMinutes() + ':' + now.getSeconds();
console.log(formattedDate + ' ' + timeFormat);
```
阅读全文