반응형
function getDateDiff(date1,date2) { var arrDate1 = date1.split("-"); var getDate1 = new Date(parseInt(arrDate1[0]),parseInt(arrDate1[1])-1,parseInt(arrDate1[2])); var arrDate2 = date2.split("-"); var getDate2 = new Date(parseInt(arrDate2[0]),parseInt(arrDate2[1])-1,parseInt(arrDate2[2])); var getDiffTime = getDate1.getTime() - getDate2.getTime(); return Math.floor(getDiffTime / (1000 * 60 * 60 * 24)); } //사용 var nDiff = getDateDiff('2016-03-01', '2016-03-31');
반응형
'프로그래밍 > JavaScipt' 카테고리의 다른 글
javascript get date time (0) | 2016.03.28 |
---|---|
javascript byte단위 자르기 (0) | 2016.03.28 |
javascript 천단위(3자리) 콤마찍기&소수점제외 (0) | 2016.03.23 |
javascript 숫자만 입력받기 (0) | 2015.07.09 |
javascript replace를 replaceAll 처럼 사용(정규식) (0) | 2015.06.18 |