1. 程式人生 > >時間戳轉換成日期

時間戳轉換成日期

.get mes getdate 時間戳轉換 amp nbsp sta write hour

 1     // 時間戳轉換成日期
 2     function timestampToTime(timestamp) {
 3         var date = new Date(timestamp);//時間戳為10位需*1000,時間戳為13位的話不需乘1000
 4         Y = date.getFullYear() + ‘-‘;
 5         M = (date.getMonth() + 1 < 10 ? ‘0‘ + (date.getMonth() + 1) : date.getMonth() + 1) + ‘-‘;
 6         D = date.getDate() + ‘ ‘;
7 h = date.getHours() + ‘:‘; 8 m = date.getMinutes() + ‘:‘; 9 s = date.getSeconds(); 10 return Y + M + D + h + m + s; 11 } 12 13 14 // 頁面輸出時間 15 document.write(timestampToTime(1234567980123));

時間戳轉換成日期