時間處理總結(三)javascript與WCF

1.WCF提交時間時,若需接受DateTime需轉換爲"\/Date(928120800000+0800)\/"這種格式
var DateToJson = function (jsDate) {
return "\/Date(" + jsDate.getTime() + "+0800)\/";
}json

2.服務端返回的時間json字段"\/Date(928120800000+0800)\/"轉爲時間空間能夠顯示的值
var JsonTodate = function (jsondate) {
jsondate = jsondate.replace("/Date(", "").replace(")/", "");
if (jsondate.indexOf("+") > 0) {
jsondate = jsondate.substring(0, jsondate.indexOf("+"));
}
else if (jsondate.indexOf("-") > 0) {
jsondate = jsondate.substring(0, jsondate.indexOf("-"));
}
var date = new Date(parseInt(jsondate, 10));
return date;
}get

相關文章
相關標籤/搜索