js 获取当前年月日时分秒
时间: 2023-10-24 22:04:47 浏览: 96
js中获取年月日时分秒
你可以使用以下代码获取当前年月日时分秒:
```javascript
const now = new Date();
const year = now.getFullYear();
const month = now.getMonth() + 1;
const day = now.getDate();
const hour = now.getHours();
const minute = now.getMinutes();
const second = now.getSeconds();
console.log(`${year}-${month}-${day} ${hour}:${minute}:${second}`);
```
请注意,这仅适用于JavaScript。如果你需要在其他编程语言中获取当前日期和时间,可能需要使用不同的代码。
阅读全文