Date对象中处理时间和日期的常用方法
时间日期的常用方法集合
时间日期的常用方法集合
2015-09-18
// 创建日期对象
var date=new Date();
// 创建中文星期
var weekday=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"];
document.write(date.getFullYear()+"年"+date.getMonth()+"月"+date.getDate()+"日"+weekday[date.getDay()]+"<br/>");
/* 运行结果: 2015年12月20日星期日
注: 1.获得整年份 对象名.getFullYear( ); 返回【2015】
2.获得本月日期 对象名.getDate( ); 返回【1-31】
3.获得本周星期 对象名.getDay( ); 返回【0-6】
*/
举报