JS Date对象及对象方法

Date()

Date 对象会自动把当前日期和时间保存为其初始值。

var myDate = new Date();
console.log(myDate);

JS Date对象及对象方法

也可以定义指定时间。

// 定义指定时间
var myDate = new Date("2022/2/2 12:00:00");
console.log(myDate);

JS Date对象及对象方法


getDate()

返回月份的某一天。返回值是 1 ~ 31 之间的一个整数。

var myDate = new Date();
console.log(myDate);

var day=myDate.getDate();
console.log(day);

JS Date对象及对象方法


getDay()

返回一周中的某一天,返回值是 0 ~ 6 之间的一个整数。

var myDate =new Date();
console.log(myDate);

var week=myDate.getDay();
console.log(week);   //当前为星期二,返回2。 星期日返回0

JS Date对象及对象方法


getMonth()

返回月份。返回值是 0 ~ 11 之间的一个整数。

var myDate =new Date();
console.log(myDate);

var month=myDate.getMonth();
console.log(month);  //当前为二月份,返回1

JS Date对象及对象方法


getFullYear()

以四位数字返回年份。

var myDate =new Date();
console.log(myDate);

var year=myDate.getFullYear();
console.log(year);

JS Date对象及对象方法


getHours()

返回小时字段,以本地时间显示。返回值为 0 ~ 23 之间的一个整数。

var myDate =new Date();
console.log(myDate);

var hours=myDate.getHours();
console.log(hours);

JS Date对象及对象方法


getMinutes()

返回分钟字段,以本地时间显示。返回值为 0 ~ 59 之间的一个整数。

var myDate =new Date();
console.log(myDate);

var minutes=myDate.getMinutes();
console.log(minutes);

JS Date对象及对象方法


getSeconds()

返回秒字段,以本地时间显示。返回值为 0 ~ 59 之间的一个整数。

var myDate =new Date();
console.log(myDate);

var seconds=myDate.getSeconds();
console.log(seconds);

JS Date对象及对象方法


getTime()

返回指定的日期和时间距 1970 年 1 月 1 日午夜(GMT 时间)之间的毫秒数。

var myDate =new Date();
console.log(myDate);

var time=myDate.getTime();
console.log(time);

JS Date对象及对象方法

计算1970/01/01 至今有多少年:

var time = myDate.getTime();

var minutes = 1000 * 60;  // 一分钟60000毫秒
var hours = minutes * 60;  // 一小时 3600000毫秒
var days = hours * 24; // 一天 86400000毫秒
var years = days * 365;  // 一年31536000000毫秒
var y = time / years;  // 距今毫秒数/一年的毫秒数

console.log(minutes,hours,days,years,y);

JS Date对象及对象方法


toLocaleString()

根据本地时间把 Date 对象转换为字符串,并返回结果。

var myDate = new Date();
console.log(myDate);

console.log(myDate.toLocaleString());

JS Date对象及对象方法

上一篇:05-SNAP处理Sentinel-2 L2A级数据(三)


下一篇:js Date 获取 年 月 日 具体的值