當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript Date.toUTCString()用法及代碼示例


Date 對象是 JavaScript 語言中內置的一種數據類型。日期對象是使用 new Date( ) 創建的,如下所示。

創建 Date 對象後,可以使用多種方法對其進行操作。大多數方法隻允許您使用本地時間或 UTC(通用或 GMT)時間獲取和設置對象的年、月、日、小時、分鍾、秒和毫秒字段。

這個toUTCString()date 對象的函數返回其日期的 UTCString。

用法

其語法如下

dateObj.toUTCString()

示例

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('September 26, 89 12:4:25:96');
      document.write("Current Time:"+dateObj.toUTCString());
   </script>
</body>
</html>

輸出

Current Time:Tue, 26 Sep 1989 06:34:25 GMT

示例

如果您沒有將任何內容傳遞給日期對象的構造函數,它將返回當前日期。

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date();
      document.write("Current Time:"+dateObj.toUTCString());
   </script>
</body>
</html>

輸出

Current Time:Thu, 18 Oct 2018 08:14:32 GMT

相關用法


注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 Date.toUTCString() function in JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。