자바스크립트 몇일 더한 날짜 가져오기 setDate new Date함수 이용
함수 )
/*
몇일 더한 날짜 가져오기
@parmPM : 0(오늘), 1(내일)
@return : 20180101
*/
function getPMDate( parmPM ){
var today = new Date();
//today.setDate(today.getDate() + 25); //25일 더하여 값을 보내줘요
today.setDate(today.getDate() + parmPM); //parmPM일 더하여 setting
var year = Number(today.getFullYear());
var month = Number(today.getMonth() + 1);
var day = Number(today.getDate());
var vl = String(year);
vl = vl + indexFnDigitTwoApply(month);
vl = vl + indexFnDigitTwoApply(day);
return vl;
}
즐거운 시간 보내세요~