年月日:var oDate = new Date() //年 oDate.getFullYear(); //月 返回的月份要+1才正常 oDate.getMonth()+1; //日 oDate.getDate(); //星期 (0~6对应‘日’到‘六’) oDate.getDay();时分秒:var oDate = new Date() //时 oDate.getHours(); //分 oDate.getMinutes(); //秒 oDate.getSeconds();