获取指定格式的日期
标签:
JavaScript
<!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)
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦