JavaScript Date getUTCMilliseconds() 方法



JavaScript 的 Date.getUTCMilliseconds() 方法用于根据 UTC 获取日期对象的毫秒值。此方法返回一个数值,表示指定日期和时间的毫秒数(介于 0 到 999 之间),以 UTC 为准。如果我们没有在日期对象中指定毫秒分量,则此方法默认为“0”。

UTC 代表协调世界时。它是世界各国用来调节时钟和时间的首要时间标准。

语法

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

getUTCMilliseconds();

此方法不接受任何参数。

返回值

一个数字,表示指定日期和时间的毫秒数(介于 0 到 999 之间),以 UTC 为准。

示例 1

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

<html>
<body>
<script>
   const currentDate = new Date();
   const utcmilliseconds = currentDate.getUTCMilliseconds();

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

输出

上述程序返回根据 UTC 计算的日期的毫秒数。

示例 2

在此示例中,我们从指定的日期值获取毫秒值:

<html>
<body>
<script>
   const specificDate = new Date('2023-10-26 12:30:45.154');
   const utcmilliseconds = specificDate.getUTCMilliseconds();

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

输出

上述程序返回整数 154 作为毫秒值。

示例 3

如果我们没有在提供的日期中指定毫秒分量,它将返回“0”作为默认值:

<html>
<body>
<script>
   const specificDate = new Date('2023-10-26 12:30:45');
   const utcmilliseconds = specificDate.getUTCMilliseconds();

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

输出

如我们所见,返回“0”。

示例 4

如果 Date 对象无效,此方法将返回“NaN”作为结果:

<html>
<body>
<script>
   const specificDate = new Date('sagtrjdh');
   const utcmilliseconds = specificDate.getUTCMilliseconds();

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

输出

如我们所见,返回“NaN”。

广告