//只有這一種構造函數的方式實例化日期對象函數
var dt=new Date();對象
//獲取年get
var year = dt.getFullYear();date
//獲取月,月份也是從=從0開始,可是沒有0月因此須要加1構造函數
var month = dt.getMonth()+1;co
//獲取日new
var date = dt.getDate();實例化
//獲取小時日期
var hours = dt.getHours();實例
//獲取分鐘
var minutes = dt.getMinutes();
//獲取秒
var seconds = dt.getSeconds();
//獲取毫秒
var milliseconds= dt.getMilliseconds();