js 时间戳转年月日
时间: 2023-09-07 22:16:06 浏览: 97
要将JavaScript中的时间戳转换为年月日格式,可以使用以下代码:
```javascript
// 获取当前时间戳
let timestamp = Date.now();
// 将时间戳转换为Date对象
let date = new Date(timestamp);
// 获取年、月、日
let year = date.getFullYear();
let month = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1);
let day = (date.getDate() < 10 ? '0' + date.getDate() : date.getDate());
// 拼接成年月日格式
let formattedDate = year + '-' + month + '-' + day;
console.log('输出内容:', formattedDate);
```
这段代码首先获取当前时间戳,然后使用`new Date(timestamp)`将时间戳转换为Date对象。接着,通过`getFullYear()`、`getMonth()`和`getDate()`方法获取年、月、日,并使用三元运算符和字符串拼接将它们格式化为年月日的形式。最后,将格式化后的日期打印出来。
#### 引用[.reference_title]
- *1* [js获取时间戳,将时间戳转换为年月日时分秒](https://blog.csdn.net/Aom_yt/article/details/119825165)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* *3* [js 时间戳转换,标准时间转年月日时分秒(补0),时间戳互转](https://blog.csdn.net/jmhaoxuan/article/details/127609186)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文