当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript getUTCDate()方法

JavaScript
JS数学对象参考
JS字符串对象参考
JS函数参考
JS事件参考
Javascript 常用正则表达式
FF和IE下的js兼容性问题
jQuery 简单介绍
jQuery / 核心 / $(expression, [context] ) 函数
jQuery / 核心 / $(html) 函数
如何使用JS来判断浏览器类型(ie、firefox,等等)
Javascript在IE和FireFox中的不同表现
3个js字符编码函数区别
javascript 中的 XMLDOM 对象

JavaScript getUTCDate()方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 340 ::
收藏到网摘: n/a

Definition and Usage
定义与用法

The getUTCDate() method returns the day of the month according to the Universal Coordinated Time (UTC).
getUTCDate()可根据UTC来返回日期

Syntax
语法

dateObject.getUTCDate()


Tips and Notes
提示与注意点

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是由国际时间标准所设定的。


Example
举例

In this example we print the current day of the month according to UTC:
在这个举例中我们根据UTC来返回当前月的日期:

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

The output of the code above will be:
输出结果为



Example 2
举例 2

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")
document.write(birthday.getUTCDate())
</script>

The output of the code above will be:
输出的结果为:

21


Try-It-Yourself Demos
尝试与演示

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日期。

评论 (0) All

登陆 | 还没注册?