js到当前时间的24小时时间戳方法
时间: 2023-12-01 13:04:18 浏览: 92
JS获取当前时间戳方法解析
5星 · 资源好评率100%
可以使用JavaScript中的`Date`对象来获取当前时间,然后使用`getTime()`方法将其转换为时间戳。
以下是获取当前时间的24小时时间戳的示例代码:
```javascript
// 获取当前时间
var now = new Date();
// 获取当前时间的小时数,注意这里是本地时间
var hours = now.getHours();
// 计算今天0点的时间戳
var today = new Date(now.getFullYear(), now.getMonth(), now.getDate(), 0, 0, 0);
var todayTimestamp = today.getTime();
// 如果当前时间的小时数小于等于12,则返回今天0点的时间戳,否则返回明天0点的时间戳
var timestamp = (hours <= 12) ? todayTimestamp : todayTimestamp + 24 * 60 * 60 * 1000;
console.log(timestamp);
```
上述代码会输出当前时间的24小时时间戳,即距离今天0点的毫秒数。如果当前时间的小时数小于等于12,则返回今天0点的时间戳,否则返回明天0点的时间戳。
阅读全文