js时间调整

var d = new Date();
d.setMonth(d.getMonth() - 1);   //得到前一个月的
d.setDate(d.getDate()-(d.getDate()-1));    //得到前一天的


你可能感兴趣的:(js时间调整)