博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Date对象
阅读量:5095 次
发布时间:2019-06-13

本文共 3651 字,大约阅读时间需要 12 分钟。

构造函数:

var dt = new Date();//返回一个表示本地日期和时间的Date对象

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
new Date(dateStr); //把字符串转为Date对象,其中dateStr格式有两种:

1) yyyy/MM/dd HH:mm:ss (推荐):若省略时间,返回的Date对象的时间为 00:00:00。

2) yyyy-MM-dd HH:mm:ss :若省略时间,返回的Date对象的时间为 08:00:00(加上本地时区)。

new Date(int year, int month, int opt_day, int opt_hours, int opt_minutes, int opt_seconds, int opt_milliseconds); 把年与日时分秒转换为Date对象。opt为可选参数,其中month从0开始,0表示1月份,11表示12月份。

eg: new Date(2014,11,25,15,30,40); //2014年11月25日 15时30分40秒

Date对象无属性,只能通过方法操作时间和日期,Date对象的实例方法主要分2种形式:本地时间和UTC时间,同一方法都会有此2种时间格式操作,方法名带UTC的就是UTC时间,反为本地时间的操作。

实例方法:

get方法:

getFullYear(); //返回Date对象的年份值

getMonth(); //月份,从0开始,真实月份=返回值+1

getDate(); //日期值

getHours();

getMinutes();

getSeconds();

getMilliseconds();

getDay(); //返回该Date对象一周中的星期值,0为星期天,1为星期一

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

set方法:

setFullYear(int year, int opt_month, int opt_date); //设置Date对象的年份值

setMonth(int month, int opt_date); //设置月份值,0表示1月份,11表示12月份

setDate(int date);

setHours(int hour, int opt_min, int opt_sec, int opt_msec);

setMinutes(int min, int opt_sec, int opt_msec);

setSeconds(int sec, int opt_msec);

setMilliseconds(int msec);

其他方法:

toString(); //转为'年月日 时分秒'字符串

toLocalString(); //转为'年月日 时分秒'的本地格式字符串

toDateString();; //转为'年月日'字符串

toLocalDateString(); //转为'年月日'的本地格式字符串

toTimeString(); //转为'时分秒'字符串

toLocalTimeString(); //转为'时分秒'的本地格式字符串

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

静态方法:

Date.now(); //返回Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时区为东8区,起点实际时间为:‘1970/01/01 08:00:00’),返回当前时间与起始时间之间的毫秒数

Date.parse(dateStr); //将字符串转为Date对象然后返回转换后的Date对象与起始时间之间的毫秒数

示例:

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

后台ashx代码: 

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);}

前台代码:

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

2. 倒计时: 计算当前时间离目的时间相差多少天时分。

/*** 返回倒计时* @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:26console.log(getDownTime(new Date('2015/06/01'))); // => 154天10时33分console.log(getDownTime(new Date('2014/01/01'))); // => -361天13时26分

3. 比较两Date大小:

console.log(new Date('2014/12/01') > new Date('2015/12/25')); //false

 

转载于:https://www.cnblogs.com/leyoyo/p/4191260.html

你可能感兴趣的文章
c#3.0新特性
查看>>
C语言-宏条件编译详解
查看>>
MP3结构与组成
查看>>
silverlight Command与behavior如何使用?
查看>>
javascript 简单实现对两个数组相似度的检验
查看>>
017. ADO.NET Connection和command及DataReader
查看>>
mysql导入导出.sql文件备份还原数据库[mysql导入导出sql命令行] .
查看>>
Rational Rose 2007 安装
查看>>
Coding配合git使用时遇到的问题
查看>>
java 字体+颜色综合使用示例
查看>>
ios开发之级联菜单(两个tableView实现)
查看>>
tft屏图像文字一起显示
查看>>
hdu 5144 NPY and shot
查看>>
Hive数据导入
查看>>
java 泛型
查看>>
SGU 271 水题。。。。
查看>>
基于gSOAP使用头文件的C语言版web service开发过程例子
查看>>
支付宝AR红包引出Python中的PIL小试
查看>>
MyBatis增删改查模板
查看>>
第六章函数和宏定义
查看>>