当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript getUTCDate()方法
The getUTCDate() method returns the day of the month according to the Universal Coordinated Time (UTC).
getUTCDate()可根据UTC来返回日期
dateObject.getUTCDate() |
Note: The value returned by getUTCDate() is a number between 1 and 31.
注意:getUTCDate()所返回的值处于1到31之间
Note: This method is always used in conjunction with a Date object.
注意:这个方法得和Date对象结合使用
Tip: The Universal Coordinated Time (UTC) is the time set by the World Time Standard.
提示:UTC是由国际时间标准所设定的。
In this example we print the current day of the month according to UTC:
在这个举例中我们根据UTC来返回当前月的日期:
<script type="text/javascript"> var d = new Date() </script> |
The output of the code above will be:
输出结果为
Here we define a variable with a specific date and then print the day of the month in the variable, according to UTC:
现在我们将一个变量设定为指定日期并将变量中的日期根据UTC返回出日期:
<script type="text/javascript"> var birthday = new Date("July 21, 1983 01:15:00") </script> |
The output of the code above will be:
输出的结果为:
21 |
getUTCDate()
How to use getUTCDate() to get the day of the month (according to UTC).
怎样使用getUTCDate()来得到日期(根据UTC)
Display the UTC date in different formats
How to use getUTCDate(), getUTCMonth(), and getUTCFullYear() to display the UTC date in different formats.
怎样使用getUTCDate(), getUTCMonth(), 和 getUTCFullYear() 来显示不同格式的UTC日期。