json形式の変換日
1543 ワード
JQuery.
jQuery json , JavaScript , :
//
json ( :{ServerDatetime:"\/Date(1278930470649)\/"}) Javascript
function ConvertJSONDateToJSDateObject(JSONDateString) {
var date
=
new
Date(parseInt(JSONDateString.replace(
"
/Date(
"
,
""
).replace(
"
)/
"
,
""
),
10
));
return
date;
}