jquery 获取当前时间的前7天时间
2021-03-28 22:28
标签:data get 获取 for mon time 时间 日期 date //获取当前的日期 jquery 获取当前时间的前7天时间 标签:data get 获取 for mon time 时间 日期 date 原文地址:https://www.cnblogs.com/lwh-12345/p/12612304.html
var myDate = new Date();
var now_year=myDate.getFullYear(); //获取当前年
var now_month=myDate.getMonth()+1 var date1=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 var date2=n.getDate() var before_date = before_year+"-"+before_month+"-"+date2;
文章标题:jquery 获取当前时间的前7天时间
文章链接:http://soscw.com/index.php/essay/69248.html