getDate 方法
时间:2007-12-27 来源:不详 作者:林子
返回 Date 对象中用本地时间表示的一个月中的日期值。 copyright dedecms
dateObj.getDate()
本文来自织梦
必选项 dateObj 参数为 Date 对象。 copyright dedecms
说明
要获取用全球标准时间 (UTC)表示的日期值,请使用 getUTCDate 方法。
织梦内容管理系统
返回值是一个处于 1 到 31 之间的整数,它代表了相应的 Date 对象中的日期值。
copyright dedecms
示例
下面这个例子说明了 getDate 方法的用法:
copyright dedecms
function DateDemo(){ var d, s = "
今天日期是: ";
d = new Date();
s = (d.getMonth() 1) "/";
s = d.getDate() "/";
s = d.getYear();
return(s);
}
dedecms.com
上一篇:getFullYear 方法 下一篇:getDay 方法
文章评论
共有位Admini5网友发表了评论 查看完整内容