JavaScript Date UTC()方法

时间:2019-08-20 13:50:54  来源:igfitidea点击:

说明

此方法接受一个日期,并根据世界时返回自1970年1月1日午夜以来的毫秒数。

语法

Date.UTC(year,month,day,[hours,[minutes,[seconds,[ms]]])

参数明

year-表示年份的四位数数字。

month−0到11之间的整数,表示月份。

day−1到31之间的整数,表示日期。

hours-0到23之间的整数,表示小时。

minutes-0到59之间的整数,表示分钟。

seconds-0到59之间的整数,表示秒。

ms−0到999之间的整数,表示毫秒。

返回值

自1970年1月1日午夜以来的毫秒数。

示例

var utcDate = Date.UTC(2015, 9, 21, 16, 29, 00);
var localDate = new Date(utcDate);

console.log(utcDate);         // 时间戳
console.log(Math.round(utcDate / 1000));  // 时间戳(秒为单位)

console.log(localDate.getUTCHours(), localDate.getUTCMinutes());  // UTC时间,在构造函数中指定。
console.log(localDate.getHours(), localDate.getMinutes());  // 当地时间。