本篇主要介绍 Date 日期和时间对象的操做。javascript
1. 介绍:阐述 Date 对象。html
2. 构造函数:介绍 Date 对象的构造函数new Date()几种方式。java
3. 实例方法:介绍 Date 对象的get、set等实例方法。app
4. 静态方法:介绍 Date 对象的静态方法:Date.now()、 Date.parse()等。函数
5. 实际操做:介绍 Date 对象的一些示例:获取倒计时、比较2个Date对象的大小等等。spa
Date对象,是操做日期和时间的对象。Date对象对日期和时间的操做只能经过方法。code
无;Date对象对日期和时间的操做只能经过方法。htm
参数:无对象
返回值:blog
{Date} 返回一个表示本地日期和时间的Date对象。
示例:
1
2
|
var
dt =
new
Date();
console.log(dt);
// => 返回一个表示本地日期和时间的Date对象
|
参数:
①milliseconds {int} :毫秒数;表示从'1970/01/01 00:00:00'为起点,开始叠加的毫秒数。
注意:起点的时分秒还要加上当前所在的时区,北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00'
返回值:
{Date} 返回一个叠加后的Date对象。
示例:
1
2
3
4
|
var
dt =
new
Date(1000 * 60 * 1);
// 前进1分钟的毫秒数
console.log(dt);
// => {Date}:1970/01/01 08:01:00
dt =
new
Date(-1000 * 60 * 1);
// 倒退1分钟的毫秒数
console.log(dt);
// => {Date}:1970/01/01 07:59:00
|
参数:
①dateStr {string} :可转换为Date对象的字符串(可省略时间);字符串的格式主要有两种:
1) yyyy/MM/dd HH:mm:ss (推荐):若省略时间,返回的Date对象的时间为 00:00:00。
2) yyyy-MM-dd HH:mm:ss :若省略时间,返回的Date对象的时间为 08:00:00(加上本地时区)。若不省略时间,此字符串在IE中会转换失败!
返回值:
{Date} 返回一个转换后的Date对象。
示例:
1
2
3
4
5
6
7
8
9
|
var
dt =
new
Date(
'2014/12/25'
);
// yyyy/MM/dd
console.log(dt);
// => {Date}:2014/12/25 00:00:00
dt =
new
Date(
'2014/12/25 12:00:00'
);
// yyyy/MM/dd HH:mm:ss
console.log(dt);
// => {Date}:2014/12/25 12:00:00
dt =
new
Date(
'2014-12-25'
);
// yyyy-MM-dd
console.log(dt);
// => {Date}:2014-12-25 08:00:00 (加上了东8区的时区)
dt =
new
Date(
'2014-12-25 12:00:00'
);
// yyyy-MM-dd HH:mm:ss (注意:此转换方式在IE中会报错!)
console.log(dt);
// => {Date}:2014-12-25 12:00:00
|
参数:
①year {int} :年份;4位数字。如:199九、2014
②month {int} :月份;2位数字。从0开始计算,0表示1月份、11表示12月份。
③opt_day {int} 可选:号; 2位数字;从1开始计算,1表示1号。
④opt_hours {int} 可选:时;2位数字;取值0~23。
⑤opt_minutes {int} 可选:分;2位数字;取值0~59。
⑥opt_seconds {int} 可选:秒;2未数字;取值0~59。
⑦opt_milliseconds {int} 可选:毫秒;取值0~999。
返回值:
{Date} 返回一个转换后的Date对象。
示例:
1
2
3
4
5
6
7
8
|
var
dt =
new
Date(2014, 11);
// 2014年12月(这里输入的月份数字为11)
console.log(dt);
// => {Date}:2014/12/01 00:00:00
dt =
new
Date(2014, 11, 25);
// 2014年12月25日
console.log(dt);
// => {Date}:2014/12/25 00:00:00
dt =
new
Date(2014, 11, 25, 15, 30, 40);
// 2014年12月25日 15点30分40秒
console.log(dt);
// => {Date}:2014/12/25 15:30:40
dt =
new
Date(2014, 12, 25);
// 2014年13月25日(这里输入的月份数字为12,表示第13个月,跳转到第二年的1月)
console.log(dt);
// => {Date}:2015/01/25
|
Date对象的实例方法主要分为2种形式:本地时间和UTC时间。同一个方法,通常都会有此2种时间格式操做(方法名带UTC的,就是操做UTC时间),这里主要介绍对本地时间的操做。
示例:
1
2
3
4
5
6
7
8
9
|
dt.getFullYear();
// => 2014:年
dt.getMonth();
// => 11:月;实际为12月份(月份从0开始计算)
dt.getDate();
// => 25:日
dt.getHours();
// => 15:时
dt.getMinutes();
// => 30:分
dt.getSeconds();
// => 40:秒
dt.getMilliseconds();
// => 333:毫秒
dt.getDay();
// => 4:星期几的值
dt.getTime();
// => 1419492640333 :返回Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
|
1
2
3
4
5
6
7
8
9
|
var
dt =
new
Date();
dt.setFullYear(2014);
// => 2014:年
dt.setMonth(11);
// => 11:月;实际为12月份(月份从0开始计算)
dt.setDate(25);
// => 25:日
dt.setHours(15);
// => 15:时
dt.setMinutes(30);
// => 30:分
dt.setSeconds(40);
// => 40:秒
dt.setMilliseconds(333);
// => 333:毫秒
console.log(dt);
// => 2014年12月25日 15点30分40秒 333毫秒
|
1
2
3
4
5
6
7
8
9
10
11
|
var
dt =
new
Date();
console.log(dt.toString());
// => Tue Dec 23 2014 22:56:11 GMT+0800 (中国标准时间) :将Date转换为一个'年月日 时分秒'字符串
console.log(dt.toLocaleString());
// => 2014年12月23日 下午10:56:11 :将Date转换为一个'年月日 时分秒'的本地格式字符串
console.log(dt.toDateString());
// => Tue Dec 23 2014 :将Date转换为一个'年月日'字符串
console.log(dt.toLocaleDateString());
// => 2014年12月23日 :将Date转换为一个'年月日'的本地格式字符串
console.log(dt.toTimeString());
// => 22:56:11 GMT+0800 (中国标准时间) :将Date转换为一个'时分秒'字符串
console.log(dt.toLocaleTimeString());
// => 下午10:56:11 :将Date转换为一个'时分秒'的本地格式字符串
console.log(dt.valueOf());
// => 返回Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
|
说明:返回当前日期和时间的Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
参数:无
返回值:
{int} :当前时间与起始时间之间的毫秒数。
示例:
1
|
console.log(Date.now());
// => 1419431519276
|
说明:把字符串转换为Date对象 ,而后返回此Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
参数:
①dateStr {string} :可转换为Date对象的字符串(可省略时间);字符串的格式主要有两种:
1) yyyy/MM/dd HH:mm:ss (推荐):若省略时间,返回的Date对象的时间为 00:00:00。
2) yyyy-MM-dd HH:mm:ss :若省略时间,返回的Date对象的时间为 08:00:00(加上本地时区)。若不省略时间,此字符串在IE中返回NaN(非数字)!
返回值:
{int} 返回转换后的Date对象与起始时间之间的毫秒数。
示例:
1
2
|
console.log(Date.parse(
'2014/12/25 12:00:00'
));
// => 1419480000000
console.log(Date.parse(
'2014-12-25 12:00:00'
));
// => 1419480000000 (注意:此转换方式在IE中返回NaN!)
|
说明:C#的DateTime类型经过Json序列化返回给前台的格式为:"\/Date(1419492640000)\/" 。中间的数字,表示DateTime的值与起始时间之间的毫秒数。
示例:
后台代码:简单的ashx
1
2
3
4
5
6
7
|
public
void
ProcessRequest (HttpContext context) {
System.Web.Script.Serialization.JavaScriptSerializer js =
new
System.Web.Script.Serialization.JavaScriptSerializer();
DateTime dt = DateTime.Parse(
"2014-12-25 15:30:40"
);
string
rs = js.Serialize(dt);
// 序列化成Json
context.Response.ContentType =
"text/plain"
;
context.Response.Write(rs);
}
|
前台代码:
1
2
3
4
5
|
var
dateTimeJsonStr =
'\/Date(1419492640000)\/'
;
// C# DateTime类型转换的Json格式
var
msecStr = dateTimeJsonStr.toString().replace(/\/Date\(([-]?\d+)\)\
//gi, "$1"); // => '1419492640000' :经过正则替换,获取毫秒字符串
var
msesInt = Number.parseInt(msecStr);
// 毫秒字符串转换成数值
var
dt =
new
Date(msesInt);
// 初始化Date对象
console.log(dt.toLocaleString());
// => 2014年12月25日 下午3:30:40
|
说明:计算当前时间离目的时间相差多少天时分。
示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/**
* 返回倒计时
* @param dt {Date}:目的Date对象
* @return {Strin} :返回倒计时:X天X时X分
*/
function
getDownTime(dt) {
// 1.获取倒计时
var
intervalMsec = dt - Date.now();
// 目的时间减去如今的时间,获取二者相差的毫秒数
var
intervalSec = intervalMsec / 1000;
// 转换成秒数
var
day = parseInt(intervalSec / 3600 / 24);
// 天数
var
hour = parseInt((intervalSec - day * 24 * 3600) / 3600);
// 小时
var
min = parseInt((intervalSec - day * 24 * 3600 - hour * 3600) / 60);
// 分钟
// 2.若相差的毫秒小于0 ,表示目的时间小于当前时间,这时的取的值都是负的:-X天-时-分,显示时,只显示天数前面为负的就行。
if
(intervalMsec < 0) {
hour = 0 - hour;
min = 0 - min;
}
// 3.拼接字符串并返回
var
rs = day +
'天'
+ hour +
'时'
+ min +
'分'
;
return
rs;
}
// 当前时间:2014/12/28 13:26
console.log(getDownTime(
new
Date(
'2015/06/01'
)));
// => 154天10时33分
console.log(getDownTime(
new
Date(
'2014/01/01'
)));
// => -361天13时26分
|
说明:能够对比2者的与起始时间的毫秒数,来区分大小。
示例:
1
2
3
|
var
dt1 =
new
Date(
'2015/12/01'
);
var
dt2 =
new
Date(
'2015/12/25'
);
console.log(dt1 > dt2);
// => false
|