js获取当前时间yyyy-mm-dd hh:dd
时间: 2023-07-07 07:45:15 浏览: 162
可以使用JavaScript的Date对象来获取当前时间,然后再使用该对象的方法来格式化日期时间。下面是一个获取当前时间并格式化为"yyyy-mm-dd hh:mm"的示例代码:
```javascript
var now = new Date();
var year = now.getFullYear();
var month = now.getMonth() + 1;
var day = now.getDate();
var hour = now.getHours();
var minute = now.getMinutes();
if (month < 10) month = '0' + month;
if (day < 10) day = '0' + day;
if (hour < 10) hour = '0' + hour;
if (minute < 10) minute = '0' + minute;
var dateTime = year + '-' + month + '-' + day + ' ' + hour + ':' + minute;
console.log(dateTime);
```
输出结果类似于:"2021-03-25 15:30"。
相关问题
js 获取当前时间 YYYY-MM-DD HH:mm:ss
可以使用 JavaScript 内置的 `Date` 对象来获取当前时间,然后使用一些字符串格式化的方法来将其转换为指定的格式。以下是一个获取当前时间并格式化为 `YYYY-MM-DD HH:mm:ss` 的示例代码:
```javascript
// 创建 Date 对象并获取当前时间
const now = new Date();
// 按指定格式格式化时间
const formattedTime = now.getFullYear() + '-' +
(now.getMonth() + 1).toString().padStart(2, '0') + '-' +
now.getDate().toString().padStart(2, '0') + ' ' +
now.getHours().toString().padStart(2, '0') + ':' +
now.getMinutes().toString().padStart(2, '0') + ':' +
now.getSeconds().toString().padStart(2, '0');
console.log(formattedTime);
```
输出结果为类似 `2021-04-12 14:30:45` 的字符串。
js获取当前时间yyyy-mm-dd hh:mm:ss
A:
你好!以下是 JavaScript 获取当前时间并格式化为 "yyyy-mm-dd hh:mm:ss" 的代码:
```
let now = new Date();
let year = now.getFullYear();
let month = ('0' + (now.getMonth() + 1)).slice(-2);
let day = ('0' + now.getDate()).slice(-2);
let hour = ('0' + now.getHours()).slice(-2);
let minute = ('0' + now.getMinutes()).slice(-2);
let second = ('0' + now.getSeconds()).slice(-2);
let currentTimestamp = `${year}-${month}-${day} ${hour}:${minute}:${second}`;
console.log(currentTimestamp);
```
代码中:
- `now` 创建了当前日期时间的实例。
- `year`、`month`、`day`、`hour`、`minute`、`second`,分别为年月日、小时分钟秒的数据。
- `slice(-2)` 可以把缺失的前导 0 填充上。
- `currentTimestamp` 把时间按照要求拼接起来。
欢迎多多交流!
阅读全文