js获取当前时间yyyy-mm-dd
时间: 2023-09-24 15:05:38 浏览: 81
可以使用JavaScript的Date对象来获取当前时间,然后使用一些字符串操作方法来格式化日期。下面是一个示例代码:
```javascript
var today = new Date();
var year = today.getFullYear();
var month = today.getMonth() + 1;
var day = today.getDate();
// 添加前导零
if (month < 10) {
month = '0' + month;
}
if (day < 10) {
day = '0' + day;
}
var currentDate = year + '-' + month + '-' + day;
console.log(currentDate);
```
这个代码会输出当前的日期,格式为yyyy-mm-dd。
相关问题
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` 把时间按照要求拼接起来。
欢迎多多交流!
阅读全文