JavaScript Date getUTCSeconds() 方法



getUTCSeconds() 方法是 JavaScript Date 对象原型的一部分。它用于根据协调世界时 (UTC) 检索日期对象的秒分量。返回值将是一个介于 (0 到 59) 之间的整数,表示日期的秒数。如果提供的 Date 对象“无效”,则此方法返回非数字(NaN)作为结果。此外,此方法不接受任何参数。

UTC 代表协调世界时。它是世界各地调节时钟和时间的首要时间标准。而印度标准时间 (IST) 是印度采用的时间,IST 和 UTC 之间的时间差为 UTC+5:30(即 5 小时 30 分)。

语法

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

getUTCSeconds();

此方法不接受任何参数。

返回值

返回值是一个整数,表示给定日期对象在 UTC 时区中的秒分量。

示例 1

在以下示例中,我们演示了 JavaScript Date getUTCSeconds() 方法的基本用法:

<html>
<body>
<script>
   const currentDate = new Date();
   const seconds = currentDate.getUTCSeconds();

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

输出

它返回根据世界时计算的日期的秒分量。

示例 2

在此示例中,我们检索并打印提供的日期的秒分量:

<html>
<body>
<script>
   const specificDate = new Date("December 21, 2023 12:30:45 UTC");
   const seconds = specificDate.getUTCSeconds();

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

输出

以上程序返回整数 45 作为秒值。

示例 3

以下示例每 2 秒打印一次根据世界时计算的日期的秒分量。

<html>
<body>
<script>
   function printSeconds() {
      const currentDate = new Date();
      const seconds = currentDate.getUTCSeconds();
      document.write(seconds + "<br>");
   }

   setInterval(printSeconds, 2000);
</script>
</body>
</html>

输出

如我们所见,输出每 2 秒打印一次秒数。

广告