toUTCString 方法
2008-01-05 19:02:28 来源:WEB开发网核心提示: 返回一个已被转换为字符串的,用全球标准时间 (UTC)表示的日期,toUTCString 方法, dateObj.toUTCString()必选项 dateObj 参数为任意 Date 对象,说明toUTCString 方法返回一个 String 对象, d = new Date(); //
返回一个已被转换为字符串的,用全球标准时间 (UTC)表示的日期。
dateObj.toUTCString()
必选项 dateObj 参数为任意 Date 对象。
说明
toUTCString 方法返回一个 String 对象,此对象中包含了使用 UTC 惯例以一种方便易读的形式进行格式化的日期。
示例
下面这个例子说明了 toUTCString 方法的用法。
function toUTCStrDemo(){ var d, s; //
声明变量。d = new Date(); //
创建Date
对象。s = "Current setting is ";
s += d.toUTCString(); //
转换为UTC
字符串。return(s); //
返回UTC
字符串。 }
要求
版本 3
请参阅
Date 对象的方法 toGMTString 方法
应用于: Date 对象
Tags:toUTCString 方法
编辑录入:爽爽 [复制链接] [打 印]- ››方法 (Array)
- ››toUTCString 方法
- ››方法和作用域中的内部类
- ››方法调用的绑定
更多精彩
赞助商链接