在JavaScript 中從Unix 時間戳獲取時間
在Web 應用程式中,經常會遇到Unix 格式的時間戳,它表示從1970 年1 月1 日。 JavaScript 提供了一種將這些時間戳轉換為用戶友好時間的方法
要從Unix 時間戳中僅檢索時間部分,您可以使用以下步驟:
範例程式碼:
let unix_timestamp = 1549312452; // Create a new JavaScript Date object based on the timestamp // multiplied by 1000 so that the argument is in milliseconds, not seconds var date = new Date(unix_timestamp * 1000); // Hours part from the timestamp var hours = date.getHours(); // Minutes part from the timestamp var minutes = "0" + date.getMinutes(); // Seconds part from the timestamp var seconds = "0" + date.getSeconds(); // Will display time in 10:30:23 format var formattedTime = hours + ':' + minutes.substr(-2) + ':' + seconds.substr(-2); console.log(formattedTime);
以上是如何在 JavaScript 中從 Unix 時間戳記取得時間?的詳細內容。更多資訊請關注PHP中文網其他相關文章!