下面總結(jié)一下js中時(shí)間戳與日期格式的相互轉(zhuǎn)換:
- 將時(shí)間戳轉(zhuǎn)換成日期格式:
function timestampToTime(timestamp) {
var date = new Date(timestamp * 1000);//時(shí)間戳為10位需*1000查近,時(shí)間戳為13位的話不需乘1000
Y = date.getFullYear() + '-';
M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
D = date.getDate() + ' ';
h = date.getHours() + ':';
m = date.getMinutes() + ':';
s = date.getSeconds();
return Y+M+D+h+m+s;
}
timestampToTime(1403058804);
console.log(timestampToTime(1403058804));//2014-06-18 10:33:24
注意:如果是Unix時(shí)間戳記得乘以1000蜓竹。比如:PHP函數(shù)time()獲得的時(shí)間戳就要乘以1000挑社。 - 將日期格式轉(zhuǎn)換成時(shí)間戳:
var date = new Date('2014-04-23 18:55:49:123');
// 有三種方式獲取
var time1 = date.getTime();
var time2 = date.valueOf();
var time3 = Date.parse(date);
console.log(time1);//1398250549123
console.log(time2);//1398250549123
console.log(time3);//1398250549000
以上三種獲取方式的區(qū)別:
第一、第二種:會(huì)精確到毫秒
第三種:只能精確到秒价卤,毫秒用000替代
以上三個(gè)輸出結(jié)果可觀察其區(qū)別
注意:獲取到的時(shí)間戳除以1000就可獲得Unix時(shí)間戳,就可傳值給后臺(tái)得到乃正。