$(document).ready(function () {
var test = GetDateString("/Date(1425518216500)/");
alert(test);
}
function GetDateString(jsonDate) {
var year, month, day, hour, minute, second , returnValue , date ,replaceStr
replaceStr = jsonDate.replace(/\D/g, "");
date = new Date(parseInt(replaceStr));
year = date.getFullYear();
month = Pad(date.getMonth());
day = Pad(date.getDate());
hour = Pad(date.getHours());
minute = Pad(date.getMinutes());
second = Pad(date.getSeconds());
returnValue = year + "-" + month + "-" + day + " " + hour + ":" + minute + ":" + second;
return returnValue;
}
function Pad(num) {
num = "0" + num;
return num.slice(-2);
}
'JAVASCRIPT' 카테고리의 다른 글
showModalDialog 오픈 후 onload 이벤트에서 창 사이즈 조정 (0) | 2016.02.03 |
---|---|
[JavaScript] Splice 메서드를 이용하여 배열 초기화 (0) | 2015.10.12 |
IE 11 프린트 출력 - Window.open 으로 호출 된 창의 print() 메소드 호출 후 close() 호출시 문제 임시 해결 방편 (0) | 2014.12.27 |
[Javascript] 확인, 취소 메세지 Confirm 을 이용하여 간단히 제어 (0) | 2013.09.26 |
opener 창 닫아주기 IE 브라우저 별 구분 (0) | 2013.08.26 |