内容目录
getDate()
函数用于使用当地时间返回当前Date对象中一个月第几天的值。也就是"年份-月份-日期"中"日期"的数值。例如:2013年7月15日,就返回15。
该函数属于Date对象,所有主流浏览器均支持该函数。
语法
date.getDate( )
返回值
getDate()
函数的返回值为Number类型,返回当前Date对象的日期值。该值介于 [1, 31] 之间。
示例&说明
// 定义一个当前时间的Date对象(当前日期为2014-08-07)
var date = new Date();
document.writeln( date.getDate() ); // 7
// 定义一个"1999-05-30 12:11:59 230"的Date对象
var date2 = new Date(1999, 4, 30, 12, 11, 59, 230);
document.writeln( date2.getDate() ); // 30
0 条评论
撰写评论