猿问

js如何获取某年某月起始的时间戳?

js如何获取某年某月起始的时间戳?php的话有mktime可以实现,不知道js有没有什么简单的方法获取到?
我这的需求是要得到某月的数据,先要传一个月的开始的时间戳和结束时间戳,后端通过这个来判断。

哈士奇WWW
浏览 2508回答 4
4回答

慕村225694

function computeTime(year, month){    return [        new Date(year, month - 1, 1).getTime(),        new Date(year, month, 0).getTime()    ]}computeTime(2017, 2)

守候你守候我

复杂时间最好用monent.jslet t = Date.now() - new Date('2018-4-27 10:57:00').getTime()

杨__羊羊

老牌一般用moment.js吧。不过最近掘金退过一个dayjs,好像也不错。

holdtom

获取到时间转一下时间戳
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答