码迷,mamicode.com
首页 > Web开发 > 详细

jquery 获取当前时间的前7天时间

时间:2020-04-01 15:07:27      阅读:416      评论:0      收藏:0      [点我收藏+]

标签:data   get   获取   for   mon   time   时间   日期   date   

//获取当前的日期
var myDate = new Date();
var now_year=myDate.getFullYear(); //获取当前年
var now_month=myDate.getMonth()+1 <=9 ? "0"+(myDate.getMonth()+1) : myDate.getMonth()+1; //获取当前月
var date1=myDate.getDate() <=9 ? "0"+myDate.getDate() : myDate.getDate(); //获取当前日
var now_data=now_year+"-"+now_month+"-"+date1

//获取一周前的日期
var d=new Date();
var n=new Date(d.getTime()-86400000*7);
var before_year=n.getFullYear();
var before_month= n.getMonth()+1 <=9 ? "0"+(n.getMonth()+1) : n.getMonth()+1;
var date2=n.getDate() <=9 ? "0"+n.getDate() : n.getDate();
var before_date = before_year+"-"+before_month+"-"+date2;


jquery 获取当前时间的前7天时间

标签:data   get   获取   for   mon   time   时间   日期   date   

原文地址:https://www.cnblogs.com/lwh-12345/p/12612304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!