1. 程式人生 > >如何得到當前日期7個工作日日期(不包含週六日)

如何得到當前日期7個工作日日期(不包含週六日)

function getworkday(date,itervalByDay){  
   var  date=new Date();  
   var millisceonds =date.getTime();  
   for(var i=1;i<=itervalByDay;i++){  
      millisceonds +=24*60*60*1000;  
      date.setTime(millisceonds);  
      if(date.getDay()==0||date.getDay()==6) i--;  
   }  
   return date;  
}
var d=getworkday(new Date(),7); //當前時間,7個工作日
youWant=d.getFullYear() + '-' + (d.getMonth() + 1) + '-' + d.getDate() + ' ' + d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds(); //格式化
console.log(youWant);