黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

JavaScript 日期

javascript 日期

javascript 使用 date 對象來處理日期。

var d = new date();

 

1. javascript 日期輸出

默認(rèn)情況下,javascript 將使用瀏覽器的時區(qū)并將日期顯示為全文本字符串:

tue apr 02 2019 09:01:19 gmt+0800 (中國標(biāo)準(zhǔn)時間)

 

2. 創(chuàng)建 date 對象

date 對象由新的 date() 構(gòu)造函數(shù)創(chuàng)建。

有 4 種方法創(chuàng)建新的日期對象:

  • new date()
  • new date(year, month, day, hours, minutes, seconds, milliseconds)
  • new date(milliseconds)
  • new date(date string)

 

3. new date()

new date() 用當(dāng)前日期和時間創(chuàng)建新的日期對象:

范例

var d = new date();

日期對象是靜態(tài)的。計算機時間正在滴答作響,但日期對象不會。

 

4. new date(year, month, ...)

new date(year, month, ...) 用指定日期和時間創(chuàng)建新的日期對象。

7個數(shù)字分別指定年、月、日、小時、分鐘、秒和毫秒(按此順序):

范例

var d = new date(2018, 11, 24, 10, 33, 30, 0);

注釋:javascript 從 0 到 11 計算月份。

一月是 0。十二月是11。

6個數(shù)字指定年、月、日、小時、分鐘、秒:

范例

var d = new date(2018, 11, 24, 10, 33, 30);

5個數(shù)字指定年、月、日、小時和分鐘:

范例

var d = new date(2018, 11, 24, 10, 33);

4個數(shù)字指定年、月、日和小時:

范例

var d = new date(2018, 11, 24, 10);

3 個數(shù)字指定年、月和日:

范例

var d = new date(2018, 11, 24);

2個數(shù)字指定年份和月份:

范例

var d = new date(2018, 11);

您不能省略月份。如果只提供一個參數(shù),則將其視為毫秒。

范例

var d = new date(2018);

 

5. 上個世紀(jì)

一位和兩位數(shù)年份將被解釋為 19xx 年:

范例

var d = new date(99, 11, 24);

范例

var d = new date(9, 11, 24);

 

6. new date(datestring)

new date(datestring) 從日期字符串創(chuàng)建一個新的日期對象:

范例

var d = new date("october 13, 2014 11:13:00");

 

7. javascript 將日期存儲為毫秒

javascript 將日期存儲為自 1970 年 1 月 1 日 00:00:00 utc(協(xié)調(diào)世界時)以來的毫秒數(shù)。

零時間是 1970 年 1 月 1 日 00:00:00 utc。

現(xiàn)在的時間是:1970 年 1 月 1 日之后的 1554166879383 毫秒。

 

8. new date(milliseconds)

new date(milliseconds) 創(chuàng)建一個零時加毫秒的新日期對象:

范例

var d = new date(0);

1970年 1 月 1 日加上100 000 000 000毫秒,大約是 1973 年 3 月 3 日:

范例

var d = new date(100000000000);

1970 年 1 月 1 日減去 100 000 000 000 毫秒大約是 1966 年 10 月 31 日:

范例

var d = new date(-100000000000);

范例

var d = new date(86400000);

一天(24 小時)是 86 400 000 毫秒。

 

9. 日期方法

創(chuàng)建 date 對象時,可以使用許多方法對其進行操作。

日期方法允許您使用本地時間或 utc(通用或 gmt)時間來獲取和設(shè)置日期對象的年、月、日、小時、分鐘、秒和毫秒。

日期方法和時區(qū)將在下一章中介紹。

 

10. 顯示日期

javascript(默認(rèn)情況下)將以全文本字符串格式輸出日期:

wed mar 25 2015 08:00:00 gmt+0800 (中國標(biāo)準(zhǔn)時間)

在 html 中顯示日期對象時,會使用 tostring() 方法自動轉(zhuǎn)換為字符串。

范例

d = new date();
document.getelementbyid("demo").innerhtml = d;

等同于:

d = new date();
document.getelementbyid("demo").innerhtml = d.tostring();

toutcstring() 方法將日期轉(zhuǎn)換為 utc 字符串(一種日期顯示標(biāo)準(zhǔn))。

范例

var d = new date();
document.getelementbyid("demo").innerhtml = d.toutcstring();

todatestring() 方法將日期轉(zhuǎn)換為更易讀的格式:

范例

var d = new date();
document.getelementbyid("demo").innerhtml = d.todatestring();

下一節(jié):js 日期格式

js 教程

相關(guān)文章