时间对象
苏喂苏喂苏喂su
这个作者很懒,什么都没留下…
展开
-
js获取年月日 时分秒的日期格式
const date = new Date() const year = date.getFullYear() const month = date.getMonth() + 1 >= 10 ? date.getMonth() + 1 : `0${date.getMonth() + 1}` const day = date.getDate() >= 10 ? date.getDate() : `0${date.getDate()}` const hours = date.getHours() .原创 2022-05-06 10:03:19 · 1278 阅读 · 1 评论 -
获取当月(月份)天数
const year = 2021; const month = 8; new Date(year, month, 0).getDate(); 传入年份和月份即可,第三个参数固定写0;即可。原创 2021-08-27 15:30:03 · 567 阅读 · 0 评论 -
通过计算毫秒数获得两个时间(日期+时间)的相差天数
let d1 = new Date().getTime(); let d2 = '2019-08-01 22:06:00' d2 = new Date(d2).getTime() console.log(d1, "d1") // 得到当前时间毫秒 console.log(d2, "d2") // 得到2019-08-01 22:06:00这个时间的毫秒 /* getTime()...原创 2019-08-27 22:26:58 · 2373 阅读 · 0 评论