JavaScript Date对象详解(2)

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')

3.2 set方法

3.2.1 setFullYear(year, opt_month, opt_date) :设置Date对象的年份值;4位年份。

3.2.2 setMonth(month, opt_date) :设置Date对象的月份值。0表示1月,11表示12月。

3.2.3 setDate(date) :设置Date对象的月份中的日期值;值的范围1~31 。

3.2.4 setHours(hour, opt_min, opt_sec, opt_msec) :设置Date对象的小时值。

3.2.5 setMinutes(min, opt_sec, opt_msec) :设置Date对象的分钟值。

3.2.6 setSeconds(sec, opt_msec) :设置Date对象的秒数值。

3.2.7 setMilliseconds(msec) :设置Date对象的毫秒值。

示例:

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毫秒

3.3 其他方法

3.3.1 toString() :将Date转换为一个'年月日 时分秒'字符串

3.3.2 toLocaleString() :将Date转换为一个'年月日 时分秒'的本地格式字符串

3.3.3 toDateString() :将Date转换为一个'年月日'字符串

3.3.4 toLocaleDateString() :将Date转换为一个'年月日'的本地格式字符串

3.3.5 toTimeString() :将Date转换为一个'时分秒'字符串

3.3.6 toLocaleTimeString() :将Date转换为一个'时分秒'的本地格式字符串

3.3.7 valueOf() :与getTime()一样, 返回Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')

示例:

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')

四. 静态方法
4.1 Date.now()

说明:返回当前日期和时间的Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')

参数:无

返回值:

{int} :当前时间与起始时间之间的毫秒数。

示例:

console.log(Date.now()); // => 1419431519276

4.2 Date.parse(dateStr)

说明:把字符串转换为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对象与起始时间之间的毫秒数。

示例:

console.log(Date.parse('2014/12/25 12:00:00')); // => 1419480000000 console.log(Date.parse('2014-12-25 12:00:00')); // => 1419480000000 (注意:此转换方式在IE中返回NaN!)

五. 实际操作
5.1 C#的DateTime类型转换为Js的Date对象

说明:C#的DateTime类型通过Json序列化返回给前台的格式为:"\/Date(1419492640000)\/" 。中间的数字,表示DateTime的值与起始时间之间的毫秒数。

示例:

后台代码:简单的ashx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgysys.html