javascript取得今天日期

2012年3月14日 星期三



var getDate  = new Date();
var toDay = getDate.getYear() + "-" +  (getDate.getMonth()+1) + "-" + getDate.getDate() + " " + getDate.getHours() + ":" + getDate.getMinutes() + ":" + getDate.getSeconds() ;
getDate(): 一月份中的第幾天
getMonth(): 一年中的第幾月(從0開始計算,所以要加1)
getYear(): 西元年份
getDay(): 一星期中的日期
getHours(): 一天中的小時數
getMinutes(): 一天中的分鐘
getSeconds(): 一天中的秒數
getTime(): 從1970年一月一日以來的千分之一秒數

0 意見: