JavaScript Date setSeconds() 方法



JavaScript 的 Date.setSeconds() 方法用于设置日期对象的“秒”组件。此方法只影响日期的秒部分,而不会更改其他组件(如小时、分钟、毫秒)。此外,我们还可以修改日期对象的“毫秒”。

此方法的返回值将是 Date 对象的更新时间戳,它反映了通过修改秒组件所做的更改。如果传递的值大于 59 或小于 0,它将自动相应地调整其他组件。

语法

以下是 JavaScript Date setSeconds() 方法的语法:

setSeconds(secondsValue, millisecondsValue);

参数

此方法接受两个参数。具体如下:

  • secondsValue − 表示秒数的整数(0 到 59)。
    • 如果提供 -1,则结果将是前一分钟的最后一秒。
    • 如果提供 60,则结果将是下一分钟的第一秒。
  • millisecondsValue (可选) − 表示毫秒数的整数(0 到 999)。
    • 如果提供 -1,则结果将是前一秒的最后一毫秒。
    • 如果提供 1000,则结果将是下一秒的第一毫秒。

返回值

此方法返回表示在设置新月份后调整后的日期的时间戳。

示例 1

在下面的示例中,我们使用 JavaScript Date setSeconds() 方法将当前日期的“秒”设置为 30:

<html>
<body>
<script>
   const currentDate = new Date();
   currentDate.setSeconds(30);

   document.write(currentDate);
</script>
</body>
</html>

输出

如果我们执行上述程序,秒将被设置为 30。

示例 2

在这里,我们将 15 秒添加到指定的日期:

<html>
<body>
<script>
   const currentDate = new Date("2023-12-25 18:30:10");
   currentDate.setSeconds(currentDate.getSeconds() + 15);

   document.write(currentDate);
</script>
</body>
</html>

输出

它将返回时间戳“Mon Dec 25 2023 18:30:25 GMT+0530 (India Standard Time)” 。

示例 3

如果我们为 secondsValue 提供“-1”,此方法将返回前一分钟的最后一秒:

<html>
<body>
<script>
   const currentDate = new Date("2023-12-25 18:30:10");
   currentDate.setSeconds(-1);

   document.write(currentDate);
</script>
</body>
</html>

输出

它将返回时间戳“Mon Dec 25 2023 18:29:59 GMT+0530 (India Standard Time)” 。

示例 4

如果我们为 secondsValue 提供“60”,此方法将返回下一分钟的第一秒:

<html>
<body>
<script>
   const currentDate = new Date("2023-12-25 18:30:10");
   currentDate.setSeconds(60);

   document.write(currentDate);
</script>
</body>
</html>

输出

它将返回时间戳“Mon Dec 25 2023 18:31:00 GMT+0530 (India Standard Time)” 。

广告