可以使用 Moment.js 的 endOf()
和 valueOf()
方法结合使用,来获取指定时间戳的所在月份的最后一天的最后一毫秒的时间戳。具体代码如下:
javascript
const timestamp = 1632962400000; // 指定时间戳
const momentObj = moment(timestamp); // 初始化 Moment 对象
const endOfMonth = momentObj.endOf("month"); // 获取所在月份的最后一天
const endOfLastMillisecond = endOfMonth.endOf("millisecond"); // 获取最后一毫秒的时间
const lastMillisecondTimestamp = endOfLastMillisecond.valueOf(); // 获取最后一毫秒的时间戳
console.log(lastMillisecondTimestamp); // 输出最后一毫秒的时间戳
其中,timestamp
变量为指定的时间戳,momentObj
变量初始化为 Moment 对象,endOfMonth
变量获取该对象所在月份的最后一天的对象,endOfLastMillisecond
变量获取最后一毫秒的时间,lastMillisecondTimestamp
变量获取最后一毫秒的时间戳。
另:
可以使用moment插件的startOf()方法和unix()方法来获取指定时间戳所在月份的第一天的00:00:00时的时间戳。代码示例如下:
javascript
var timestamp = 1592928000; // 指定的时间戳,代表2020年6月24日 00:00:00
var firstDayOfMonth = moment.unix(timestamp).startOf('month'); // 获取指定时间戳所在月份的第一天
var firstDayTimestamp = firstDayOfMonth.unix(); // 获取指定时间戳所在月份的第一天的00:00:00时的时间戳
console.log(firstDayTimestamp); // 输出:1590969600,代表2020年6月1日 00:00:00的时间戳
需要注意的是,使用moment插件时需要在引入moment.js之后再引入相关语言包和插件。
用js的moment插件 获取指定时间戳的所在月份的第一天的00:00:00时的时间戳。