轉換為字串格式
轉換為 String
var date1 = new Date();
date1.toString();
返回:“Fri Apr 15 2016 07:48:48 GMT-0400(Eastern Daylight Time)”
轉換為時間字串
var date1 = new Date();
date1.toTimeString();
返回:“格林威治標準時間 -0400(東部夏令時間)07:48:48”
轉換為日期字串
var date1 = new Date();
date1.toDateString();
返回:“2016 年 4 月 14 日星期四”
轉換為 UTC 字串
var date1 = new Date();
date1.toUTCString();
返回:“週五,2016 年 4 月 15 日 11:48:48 GMT”
轉換為 ISO 字串
var date1 = new Date();
date1.toISOString();
返回:“2016-04-14T23:49:08.596Z”
轉換為 GMT 字串
var date1 = new Date();
date1.toGMTString();
返回:“星期四,2016 年 4 月 14 日 23:49:08 GMT”
此功能已被標記為已棄用,因此某些瀏覽器將來可能不支援此功能。建議使用 toUTCString()
代替。
轉換為區域設定日期字串
var date1 = new Date();
date1.toLocaleDateString();
退貨:“2016/4/14”
預設情況下,此函式根據使用者的位置返回區域設定敏感日期字串。
date1.toLocaleDateString([locales [, options]])
可用於提供特定的語言環境,但特定於瀏覽器實現。例如,
date1.toLocaleDateString(["zh", "en-US"]);
將嘗試使用美國英語作為後備列印中文語言環境中的字串。options 引數可用於提供特定格式。例如:
var options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };
date1.toLocaleDateString([], options);
會導致
“2016 年 4 月 14 日星期四”。
有關詳細資訊,請參閱 MDN 。