java script 日期對象Date()
1.獲取當前時間
var time = new Date()
document.write(time);
注意:如果Date() 有參數的話 返回1970年1月1日到指定毫秒數的時間
當參數為 n,q,w時 n代表年 q 代表月 q代表天 其中實際月份會比參數月份+1
2.Date.now()獲取當前時間戳
document.write(Date.now()) 獲取當前時間距離1970年1月1日的毫秒數
var a = new Date()
document.write(a.getTime()); 結果一樣
注意 :document.write(time); 獲取的當前時間 Date.now()獲取當前時間距離1970年1月1日的毫秒數
3.Date.parse()返回1970年1月1號到指定時間日期的毫秒數
console.log(Date.parse(2015,09,26,12,23,34));
參數:為年月日時分秒 Date.UTC() 國際指定日期時間到1970年1月1日。
4.獲取當前的年月日時分秒分開儲存
console.log(d.getFullYear());
console.log(d.getMonth()+1); //獲取月份
console.log(d.getDate()); //獲取當前日
console.log(d.getDay()); //星期幾(0是星期日)
console.log(d.getHours());
console.log(d.getMinutes());
console.log(d.getSeconds());
console.log(d.getMilliseconds());
console.log(d.getTime());