var mydate = new date();
mydate.getfullyear() //獲取完整的年份
mydate.getyear(); //獲取當前年份(2位)
mydate.getfullyear(); //獲取完整的年份(4位)
mydate.getmonth(); //獲取當前月份(0-11,0代表1月)
mydate.getdate(); //獲取當前日(1-31)
mydate.getday(); //獲取當前星期x(0-6,0代表星期天)
mydate.gettime(); //獲取當前時間(從1970.1.1開始的毫秒數)
mydate.gethours(); //獲取當前小時數(0-23)
mydate.getminutes(); //獲取當前分鐘數(0-59)
mydate.getseconds(); //獲取當前秒數(0-59)
mydate.getmilliseconds(); //獲取當前毫秒數(0-999)
mydate.tolocaledatestring(); //獲取當前日期
var mytime=mydate.tolocaletimestring(); //獲取當前時間
mydate.tolocalestring( ); //獲取日期與時間
js的Date物件方法詳解
date實列建立出來是為處理日期和時間的,date 物件時基於1970年1月1日 世界標準時間 起的毫秒數。var date new date 建立名為date的建構函式 console.log date 獲取當前時間 console.log date.valueof 獲取從1970年1月1日 世界...
JS中Date物件的常用方法
一共有十個常用的 下面列舉出來 1.new date 這個也是必須的如果用到時間的話 2.getfullyear 獲取當前年份 3.getmonth 獲取當前的月份 但是月份是從0 11算的 所以獲取到的月份需要 1 4.gethours 獲取當前小時 5.getdate 獲取當前日期 6.getm...
JS中Date物件的常用方法
一共有十個常用的 下面列舉出來 1.new date 這個也是必須的如果用到時間的話 2.getfullyear 獲取當前年份 3.getmonth 獲取當前的月份 但是月份是從0 11算的 所以獲取到的月份需要 1 4.gethours 獲取當前小時 5.getdate 獲取當前日期 6.getm...