1. 程式人生 > >日期增加天數--JS Date

日期增加天數--JS Date

sda blog import ber lin 日期格式 mon pac key

//日期加天數的方法//dataStr日期字符串//dayCount 要增加的天數//return 增加n天後的日期字符串
function dateAddDays(dataStr,dayCount) { var strdate=dataStr; //日期字符串 var isdate = new Date(strdate.replace(/-/g,"/")); //把日期字符串轉換成日期格式 isdate = new Date((isdate/1000+(86400*dayCount))*1000); //日期加1天 var pdate = isdate.getFullYear()+"-"+(isdate.getMonth()+1)+
"-"+(isdate.getDate()); //把日期格式轉換成字符串 return pdate;}
來源: http://blog.csdn.net/kunge_/article/details/52642770


null

日期增加天數--JS Date