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


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


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

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

日期對象的 setSeconds() 函數接受一個表示秒的整數,並用它替換當前日期中的秒值。

用法

其語法如下

dateObj.setSeconds();

示例

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('september 26, 89 5:4:25:96');
      document.write("Current date:"+dateObj.toUTCString());
      document.write("<br>");
      dateObj.setSeconds(9);
      document.write("Date after setting the seconds:"+dateObj.toUTCString());
   </script>
</body>
</html>

輸出

Current date:Mon, 25 Sep 1989 23:34:25 GMT
Date after setting the seconds:Mon, 25 Sep 1989 23:34:09 GMT

示例

盡管您在創建日期對象時沒有提及當天的小時數,但您仍然可以使用 setSeconds() 函數設置它。

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('26, September, 1989 4:25');
      dateObj.setSeconds(55);
      document.write(dateObj.toString());
   </script>
</body>
</html>

輸出

Tue Sep 26 1989 04:25:55 GMT+0530 (India Standard Time)

示例

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

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date();
      dateObj.setSeconds(55);
      document.write(dateObj.toString());
   </script>
</body>
</html>

輸出

Thu Oct 18 2018 18:44:55 GMT+0530 (India Standard Time)

相關用法


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