1.獲取當前時間戳(ms)
var timestamp=date.parse(new date())
var timestamp=new date().gettime()
var timestamp=(new date()).valueof()
2.獲取某個時間格式的時間戳和倒計時
var stringtime1='2017-04-01 17:02:08'
var stringtime2='2017-05-01 8:02:01'
var timestamp=date.parse(new date(stringtime));
var daltatime=timestamp2-timestamp1;
var is=parseint(daltatime/1000)
var id=parseint(is/86400) //天數
is %= 86400 //剩餘的秒數->轉化成小時
var ih=parseint(is/3600) //小時
is %=3600
var im=parseint(is/60) //分鐘
is %=60 //秒數
3.將時間戳轉換成時間格式字串
var timestamp=1491816429000
var newdate= new date()
newdate.settime(timestamp)
1.console.log(newdate.todatestring()) //mon apr 10 2017 typeof---->string
2.console.log(newdate.tolocaledatestring()) //2017-4-10
3.console.log(newdate.tolocaletimestring()) //17:27:09
link:
4. //獲取時間
var odate= new date()
var iy=odate.getfullyear()
var imon=odate.getmonth() //0-11
var ida=odate.getdate()
var ih=odate.gethours()
var im=odate.getminutes()
var is=odate.getseconds()
var ism=odate.getmilliseconds()
var id=odate.getday() //0-6 0-->星期日
//設定時間
odate.setfullyear(iy,imon,ida)
odate.sethours(ih,im,is,ism)
Date物件方法
建立date new date date物件方法 get系列 getdate 返回乙個月中的某一天 1 31 getday 返回一周中的某一天 0 6 getfullyear 返回四位數的年份 getmonth 返回月份 0 11 0是一月 gethours 返回的是當前的小時 0 23 getmi...
Date 物件的方法簡介
date 物件的方法簡介 date 返回當日的日期和時間 getdate 從 date 物件返回乙個月中的某一天 1 31 getday 從 date 物件返回一周中的某一天 0 6 getfullyear 根據本地時間獲取當前年份 四位數字 gethours 根據本地時間獲取當前小時數 24小時制...
Date物件及toString方法
date物件 建構函式 date date dateval date year,moth,date parse方法,他返回乙個表示時間的字串。getyear getmohth 月份是從0開始編號的 getdate.等方法。案例 var nowtime new date var test test n...