JavaScript toUTCString() 方法

xiaoxiao2021-02-28  43

随时随地阅读更多技术实战干货,获取项目源码、学习资料,请关注源代码社区公众号(ydmsq666)、QQ技术交流群(183198395)。

from:http://www.w3school.com.cn/jsref/jsref_toUTCString.asp

JavaScript toUTCString() 方法

JavaScript Date 对象

定义和用法

toUTCString() 方法可根据世界时 (UTC) 把 Date 对象转换为字符串,并返回结果。

语法

dateObject.toUTCString()

返回值

dateObject 的字符串表示,用世界时表示。

实例

例子 1

在下面的例子中,我们将使用 toUTCString() 来把今天的日期转换为(根据 UTC)字符串:

<script type="text/javascript"> var d = new Date() document.write (d.toUTCString()) </script>

输出:

Mon, 09 Apr 2018 09:43:27 GMT

例子 2

在下面的例子中,我们将把具体的日期转换为(根据 UTC)字符串:

<script type="text/javascript"> var born = new Date("July 21, 1983 01:15:00") document.write(born.toUTCString()) </script>

输出:

Wed, 20 Jul 1983 17:15:00 GMT

TIY

toUTCString()

如何使用 toUTCString() 来把今天的日期转换为(根据 UTC)字符串。

JavaScript Date 对象

 

转载请注明原文地址: https://www.6miu.com/read-2632186.html

最新回复(0)