Javascript中獲取時間new Date()詳細介紹
阿新 • • 發佈:2019-01-08
1、當前系統區域設定格式(toLocaleDateString和toLocaleTimeString)
例子:(new Date()).toLocaleDateString() + " " + (new Date()).toLocaleTimeString()
結果: 2008年1月29日 16:13:11
2.普通字串(toDateString和toTimeString)
例子: (new Date()).toDateString() + " " + (new Date()).toTimeString()
結果:Tue Jan 29 2008 16:13:11 UTC+0800
3.格林威治標準時間(toGMTString)
例子: (new Date()).toGMTString()
結果:Tue, 29 Jan 2008 08:13:11 UTC
4.全球標準時間(toUTCString)
例子: (new Date()).toUTCString()
結果:Tue, 29 Jan 2008 08:13:11 UTC
5.Date物件字串(toString)
例子: (new Date()).toString()
結果:Tue Jan 29 16:13:11 UTC+0800 2008
————————————————————————————————–
日期物件也可用於比較兩個日期。
var myDate=new Date(); myDate.setFullYear(2008,7,9); var today = new Date(); if (myDate>today){ ……; }