js获取当前周一零点下周一零点时间戳
时间: 2023-07-07 16:45:19 浏览: 166
以下是获取当前周一零点和下周一零点的时间戳的JavaScript代码:
```javascript
// 获取当前日期
var now = new Date();
// 获取当前是本周第几天(0为周日,1为周一,以此类推)
var day = now.getDay();
// 计算当前日期距离本周一的天数(负数表示本周一之前的天数)
var diff = now.getDate() - day + (day == 0 ? -6 : 1);
// 计算本周一的日期
var monday = new Date(now.setDate(diff));
// 计算下周一的日期
var nextMonday = new Date(monday.getTime() + 7 * 24 * 60 * 60 * 1000);
// 计算本周一零点的时间戳
var mondayTimestamp = new Date(monday.getFullYear(), monday.getMonth(), monday.getDate()).getTime() / 1000;
// 计算下周一零点的时间戳
var nextMondayTimestamp = new Date(nextMonday.getFullYear(), nextMonday.getMonth(), nextMonday.getDate()).getTime() / 1000;
console.log(mondayTimestamp); // 输出本周一零点的时间戳
console.log(nextMondayTimestamp); // 输出下周一零点的时间戳
```
需要注意的是,JavaScript中获取的时间戳是以毫秒为单位的,需要除以1000才能得到以秒为单位的时间戳。
阅读全文