반응형
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)); }
반응형
'프로그래밍 > JavaScipt' 카테고리의 다른 글
javascript prototype 이해 (0) | 2016.06.01 |
---|---|
javascript youtube api 및 자동재생 (0) | 2016.06.01 |
javascript get date time (0) | 2016.03.28 |
javascript byte단위 자르기 (0) | 2016.03.28 |
javascript yyyy-mm-dd datediff (0) | 2016.03.28 |