js比较两个时间的大小

时间:2020-07-31 03:29:09 来源:

【摘要】 js比较两个时间的大小考必过小编为大家整理了关于js比较两个时间的大小的信息,希望可以帮助到大家!

js比较两个时间的大小

标签:code   get   date()   tps   使用   区别   字符   标准   ons   

在工作中;我们可能会遇见比较两个时间的大小;
这个时候;我们就可以使用比较一下两个时间的大小
需要注意的是了解 
//参考地址:  https://www.cnblogs.com/Byme/p/7687313.html

function tab(date1,date2){
	var oDate1 = new Date(date1);
	var oDate2 = new Date(date2);
	if(oDate1.getTime() > oDate2.getTime()){
		console.log(‘第一个大‘);
	} else  if(oDate1.getTime() < oDate2.getTime()){
		console.log(‘第二个大‘);
	}else if(oDate1.getTime() == oDate2.getTime()){
			console.log(‘一样大‘);
	}
}
tab(‘2015-10-10 00:00:00‘,‘2015-10-03 00:00:00‘);
tab(‘2015-10-10‘,‘2015-10-03‘);
这样的时间格式都是可以的;
需要注意的是中间的分割符号 ‘-‘必须是英文的;否者不能够比较;
今天不晓得为啥,写成了中文符号,英文符号中中文符号是有区别的
时间格式这一种,要使用英文符号



new Date()参数格式如下:( 得到一个中国标准时间 )

1、用整数初始化日期对象 
var date1 = new Date(2017,06,06); console.log(date1); // Thu Jul 06 2017 00:00:00 GMT+0800 (中国标准时间) 
var date1 = new Date(2017,1,1); console.log(date1); // Wed Feb 01 2017 00:00:00 GMT+0800 (中国标准时间) 
var date1 = new Date(2017,01-2,01); console.log(date1); // Thu Dec 01 2016 00:00:00 GMT+0800 (中国标准时间) 
var date1 =new Date(2017,06,06,06,06,06); console.log(date1); // Thu Jul 06 2017 06:06:06 GMT+0800 (中国标准时间) 
说明: new Date( year, month, date, hrs, min, sec) 按给定的参数创建一日期对象

2、用字符串初始化日期对象 
var date2 = new Date(“2017/06/06”); console.log(date2); // Tue Jun 06 2017 00:00:00 GMT+0800 (中国标准时间) 
var date2 = new Date(“2017-08-08”); console.log(date2); // Tue Aug 08 2017 08:00:00 GMT+0800 (中国标准时间) 
var date2 = new Date(“2017-9-9”); console.log(date2); // Sat Sep 09 2017 00:00:00 GMT+0800 (中国标准时间) 




getTime() 返回从 1970 年 1 月 1 日(指定日期)至今的毫秒数
var d=new Date();
document.write("从 1970/01/01 至今已过去 " + d.getTime() + " 毫秒");


js比较两个时间的大小

标签:code   get   date()   tps   使用   区别   字符   标准   ons   

以上就是js比较两个时间的大小的内容,更多资讯请及时关注考必过网站,最新消息小编会第一时间发布,大家考试加油!

上一篇      下一篇
前端相关推荐 更多>>
前端热点专题 更多>>
热点问答
国家公务员考试年龄限制是多少 公务员国考和省考考试内容有什么区别 函授大专学历能不能考公务员 国家公务员考试考点能自己选择吗 新闻学专业能报考2022年公务员考试吗 什么是联合培养研究生 什么是破格录取研究生 什么人不适合读研 研究生报名户口所在地填什么 研究生结业和毕业有什么区别
网站首页 网站地图 返回顶部
考必过移动版 https://m.kaobiguo.net