timestamp 转换html时间
时间: 2023-08-10 07:26:14 浏览: 123
可以使用 JavaScript 中的 `Date` 对象将时间戳转换为 HTML 时间格式。下面是一个示例代码:
```javascript
function timestampToHtmlTime(timestamp) {
const date = new Date(timestamp);
const year = date.getFullYear();
const month = ('0' + (date.getMonth() + 1)).slice(-2);
const day = ('0' + date.getDate()).slice(-2);
const hours = ('0' + date.getHours()).slice(-2);
const minutes = ('0' + date.getMinutes()).slice(-2);
const seconds = ('0' + date.getSeconds()).slice(-2);
const htmlTime = `${year}-${month}-${day}T${hours}:${minutes}:${seconds}`;
return htmlTime;
}
```
使用示例:
```javascript
const timestamp = 1614278539000;
const htmlTime = timestampToHtmlTime(timestamp);
console.log(htmlTime); // 输出:'2021-02-25T09:48:59'
```
其中,`timestamp` 是时间戳,单位为毫秒。`timestampToHtmlTime` 函数返回一个字符串,表示 HTML 时间格式。
阅读全文