getUTCMonth 方法
时间:2007-12-27 来源:不详 作者:林子
返回 Date 对象中用全球标准时间 (UTC)表示的月份值。
织梦内容管理系统
dateObj.getUTCMonth()
织梦内容管理系统
必选项 dateObj 参数为 Date 对象。 copyright dedecms
说明
要获得用本地时间表示的月份,请使用 getMonth 方法。 内容来自dedecms
getUTCMonth 方法返回一个处于 0 到 11 之间的整数,这个整数就表示 Date 对象中的月份值。所返回值并不等于按惯例来表示月份的数字。而是要比按惯例来表示月份的数字小 1。假如一个 Date 对象中保存的值是"Jan 5, 1996 08:47:00.0",那么 getUTCMonth 将返回 0。 内容来自dedecms
示例
下面这个例子说明了 getUTCMonth 方法的用法。 织梦好,好织梦
function UTCDateDemo(){ var d, s = "
今天UTC
日期是: ";
d = new Date();
s = (d.getUTCMonth() 1) "/";
s = d.getUTCDate() "/";
s = d.getUTCFullYear();
return(s);
}
dedecms.com
上一篇:getVarDate 方法 下一篇:getUTCMinutes 方法
文章评论
共有位Admini5网友发表了评论 查看完整内容