<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title>
</head>
<body>
<script>const now = new Date(); // Tue Aug 10 2021 15:32:27 GMT+0800 (中国标准时间)now.getFullYear(); // 年now.getMonth(); // 月 0~11 代表月份now.getDate(); // 日now.getDay(); // 星期几now.getHours(); // 时now.getMinutes(); // 分now.getSeconds(); // 秒now.getTime(); // 时间戳 1970 1.1 00:00:00 毫秒数console.log(new Date(1628581128902)) // 时间戳转为时间const time_conversion = new Date(1628581128902);console.log(time_conversion.toLocaleString())console.log(time_conversion.toISOString())
</script>
</body>
</html>
https://www.bilibili.com/video/BV1JJ41177di?p=15