时间对象

var oDate = new Date();
年:oDate.getFullYear();
月: oDate.getMonth();
日 : oDate.getDate();
星期: oDate.getDay();
小时: oDate.getHours();
分钟: oDate.getMinutes();
秒: oDate.getSeconds();
时间戳: 距1970年的毫秒数, oDate.getTime();
---日期 会自动进位
oDate.setFullYear(年,月,日)
oDate.setFullYear(年,月)
oDate.setFullYear(年);
oDate.setMonth(月,日);
oDate.setMonth(月);
oDate.setDate(日);
oDate.setHours(时,分,秒,毫秒);
oDate.setHours(时,分,秒);
oDate.setHours(时,分);
oDate.setHours(时);

你可能感兴趣的:(时间对象)