jquery输出ajax返回数据中的时间戳转化为日期时间的函数

时间:2023-03-09 03:21:43
jquery输出ajax返回数据中的时间戳转化为日期时间的函数
//第一种
function getLocalTime(nS) {
return new Date(parseInt(nS) * ).toLocaleString().replace(/:\d{,}$/,' ');
}
alert(getLocalTime());
//结果是2010年12月23日 10:53
//第二种
function getLocalTime(nS) {
return new Date(parseInt(nS) * ).toLocaleString().substr(,)
}
alert(getLocalTime());
//第三种 格式为:2010-10-20 10:00:00
function getLocalTime(nS) {
return new Date(parseInt(nS) * ).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " ");
}
alert(getLocalTime());