js时间加减

时间:2021-12-26 05:26:11

1.选择上一周方法(不算当天)

     $("#weekSel").click(function () {
//当前时间
var now = new Date();
//当前时间往前推一周
now.setDate(now.getDate() - 7);
//当前时间
var yes = new Date();
//当期时间往前推一天
yes.setDate(yes.getDate() - 1);
var nowTra = now.Format("yyyy-MM-dd");
var yesTra = yes.Format("yyyy-MM-dd"); });

选择周方法