手记

获取指定格式的日期

<!DOCTYPE html>

<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
    <body>
    </body>
</html>
 Date()返回当前的日期和时间

getDate() 从Date对象中返回一个月的某一天(1-31)

getDay() 从Date对象中返回一周中的某一天(0-6)

getMonth()返回月份(0-11)

getFullYear 返回4位数字的年份

getHours()返回小时(0-23)

getMinutes()返回分钟(0-59)

getSeconds() 返回秒数

getMilliSeconds 返回毫秒数(0-999)

 getTime(返回1970年1月1日至今的毫秒数)

//毫秒数和日期互转

var today=new Date;

var tomorrow=new Date(Date.parse(today)+1000*60*60*24);

console.log(today,'\n',tomorrow)

const Gettime=(day)=>{

let _year=day.getFullYear();

let _month=day.getMonth()+1;

let _day=day.getDay();
_month=_month>=10?_month:"0"+_month;
_day=_day>=10?_day:"0"+_day;
return `${_year}-${_month}-${_day}`
}
var day=new Date;
var time=Gettime(day);
console.log(time)
0人推荐
随时随地看视频
慕课网APP