为了账号安全,请及时绑定邮箱和手机立即绑定

获取指定格式的日期

标签:
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 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消