通过日期对象我们可以进行一些对日期时间的操作处理
一、日期对象的创建:
var myDate=new Date()
二、Date对象方法:
Link:http://www.w3school.com.cn/jsref/jsref_obj_date.asp
三、封装函数,打印当前是何年何月何日何时,几分几秒
Date() 返回当日的日期和时间
getFullYear() 从 Date 对象以四位数字返回年份
getMonth() 从 Date 对象返回月份 (0 ~ 11)
getDate() 从 Date 对象返回一个月中的某一天 (1 ~ 31)。
getHours() 返回 Date 对象的小时 (0 ~ 23)
getMinutes() 返回 Date 对象的分钟 (0 ~ 59)
getSeconds() 返回 Date 对象的秒数 (0 ~ 59)
getDay() 从 Date 对象返回一周中的某一天 (0 ~ 6)
var newDate = new Date(); var str = newDate.getFullYear() + ‘年‘ + (newDate.getMonth() + 1) + ‘月‘ + newDate.getDate() + ‘日‘ + newDate.getHours() + ‘时‘ + newDate.getMinutes() + ‘分‘ + newDate.getSeconds() + ‘秒‘; console.log(str);
原文:http://www.cnblogs.com/Walker-lyl/p/5929573.html