在 JavaScript 中取得目前日期和時間有兩種方法:1、使用 Date 物件建立新的 Date 對象,透過該物件取得日期、月份、年份、小時、分鐘、秒。 2、使用 JavaScript 內建函數取得目前時間戳,並將其轉換為日期物件。
取得目前日期和時間
如何取得目前日期和時間?
在JavaScript 中,有兩種主要方法可以取得目前日期和時間:
1、使用Date 物件
const now = new Date();
now.getDate()
(日期)、now.getMonth()
(月份)、now.getFullYear()
(年份)、now.getHours()
(小時)、now.getMinutes ()
(分鐘)、now.getSeconds()
(秒)#2、使用JavaScript 內建函數
const timestamp = Date.now();
const date = new Date(timestamp);
具體範例:
取得目前日期:
<code class="js">const now = new Date(); const date = now.getDate(); console.log(date); // 输出当前日期</code>
取得目前時間:
<code class="js">const now = new Date(); const hours = now.getHours(); const minutes = now.getMinutes(); const seconds = now.getSeconds(); console.log(`${hours}:${minutes}:${seconds}`); // 输出当前时间</code>
取得目前時間戳記:
<code class="js">const timestamp = Date.now(); console.log(timestamp); // 输出当前时间戳</code>
以上是js中如何取得當前日期和時間的詳細內容。更多資訊請關注PHP中文網其他相關文章!