怎么把@temporal标注的日期类型通过json转换传送到前台
返回的是时间戳吗?
试试下面的函数
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function formatDate(now) {
var year=now.getYear();
var month=now.getMonth()+1;
var date=now.getDate();
var hour=now.getHours();
var minute=now.getMinutes();
var second=now.getSeconds();
return year+"-"+month+"-"+date+" "+hour+":"+minute+":"+second;
}
var d=new Date(1230999938);
alert(formatDate(d));
///你的代码
row.find("#td3").text(formatDate(n.time))
温馨提示:内容为网友见解,仅供参考
Warning: Invalid argument supplied for foreach() in /www/wwwroot/aolonic.com/skin/templets/default/contents.html on line 45
相似回答