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


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


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

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

日期對象的 setUTCFullYear() 函數接受一個表示年份的整數,並根據通用時間用它替換當前日期中的年份值。

用法

其語法如下

dateObj.setUTCFullYear();

示例

<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 date:"+dateObj.toUTCString());
      document.write("<br>");
      dateObj.setUTCFullYear(2018);
      document.write("Date after setting the year:"+dateObj.toUTCString());
      document.write();
   </script>
</body>
</html>

輸出

Current date:Tue, 26 Sep 1989 06:34:25 GMT
Date after setting the year:Wed, 26 Sep 2018 06:34:25 GMT

示例

雖然您在創建日期對象時沒有提及月份的年份,但您仍然可以根據世界時使用 setFullYear() 函數進行設置。

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('23, August');
      document.write("<br>");
      dateObj.setFullYear(2018)
      document.write(dateObj.toDateString());
   </script>
</body>
</html>

輸出

Thu Aug 23 2018

示例

以同樣的方式,雖然您在創建日期對象時沒有將任何值傳遞給構造函數,但您仍然可以根據世界時使用此函數設置年份,並且月份和日期值保持與當前日期相同。

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date();
      document.write("<br>");
      dateObj.setFullYear(2018)
      document.write(dateObj.toDateString());
   </script>
</body>
</html>

輸出

Thu Oct 18 2018

相關用法


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