js计算两个日期间的天数月的实例代码
程序员文章站
2022-03-22 11:24:10
计算结果为几个月零几天
计算天数月 ...
计算结果为几个月零几天
<html> <head> <title>计算天数月</title> <meta charset="gbk"> <script type="text/javascript"> function dateu(date1,date2){//date2-date1 var y1=number(date1.substr(0,4));//年 var y2=number(date2.substr(0,4)); var m1=number(date1.substr(4,2));//月 var m2=number(date2.substr(4,2)); var ym1=number(date1.substr(0,6));//年月 var ym2=number(date2.substr(0,6)); var d1=number(date1.substr(6,2));//日 var d2=number(date2.substr(6,2)); var day=0; var month=0; var maxday=[31,28,31,30,31,30,31,31,30,31,30,31];//当月最大天数 var index=0;//maxday的数组编号 while(ym1<ym2){ if(m1==12){ m1=1; y1++; month++; }else{ m1++; month++; } ym1=y1*100+m1; }//递增到年月相同时停止 if(d2>=d1){//年月相同且日2>=日1 day=d2-d1; }else{//年月相同且日2<日1,取上月最大天数计算 month--;//最后月,不足一个月 if(m2==1){//1月 index=11;//取12月的 }else if(m2==3){//2月 index=1; //判断闰年否 if(y2%100==0){ if(y2%400==0){ maxday[1]=29; } }else if(y2%4==0){ maxday[1]=29; } }else{ index=m2-1; } day=maxday[index]-d1+d2; } return month+"月零"+day+"天"; } function showmonthday(){ var date1=document.getelementbyid("date1").value; var date2=document.getelementbyid("date2").value; alert(dateu(date1,date2)); } </script> </head> <body> <div align="center"><br> 开始日期:<input id="date1" value="20180707"></br> 结束日期:<input id="date2" value="20201201"></br> <input type="button" onclick="showmonthday()" value="计算"> </div> <hr> <i> copyright (c) 2018 fhy</br> all rights reserved. </i> </body> </html>
下面在通过一段代码看下js计算两个日期差
function timedifc(start,end){ let starts = new date(start),ends = new date(end),message = ''; if (starts.gettime() > ends.gettime()) return message = "现在的时间小于以前的时间!"; if ((ends.gettime() - starts.gettime())/(1000*60) < 1) return message = "刚刚"; if (ends.getfullyear() > starts.getfullyear() && ends.getmonth() >= starts.getmonth()) message += ends.getfullyear() - starts.getfullyear() + "年"; if (ends.getmonth() > starts.getmonth() && ends.getdate() >= starts.getdate()) message += ends.getmonth() - starts.getmonth() + "个月"; if (ends.getdate() > starts.getdate() && ends.gethours() >= starts.gethours()) message += ends.getdate() - starts.getdate() + "天"; if (ends.gethours() > starts.gethours() && ends.getminutes() >= starts.getminutes()) message += ends.gethours() - starts.gethours() + "小时"; if (ends.getminutes() > starts.getminutes()) message += ends.getminutes() - starts.getminutes() + "分钟"; return message; }; // 注:上边的变量是用let声明的(es6语法),下边是用babel编译后的 function timedifc(start, end) { var starts = new date(start), ends = new date(end), message = ''; if (starts.gettime() > ends.gettime()) return message = "现在的时间小于以前的时间!"; if ((ends.gettime() - starts.gettime()) / (1000 * 60) < 1) return message = "刚刚"; if (ends.getfullyear() > starts.getfullyear() && ends.getmonth() >= starts.getmonth()) message += ends.getfullyear() - starts.getfullyear() + "年"; if (ends.getmonth() > starts.getmonth() && ends.getdate() >= starts.getdate()) message += ends.getmonth() - starts.getmonth() + "个月"; if (ends.getdate() > starts.getdate() && ends.gethours() >= starts.gethours()) message += ends.getdate() - starts.getdate() + "天"; if (ends.gethours() > starts.gethours() && ends.getminutes() >= starts.getminutes()) message += ends.gethours() - starts.gethours() + "小时"; if (ends.getminutes() > starts.getminutes()) message += ends.getminutes() - starts.getminutes() + "分钟"; return message; };
在浏览器的console中测试结果如下:
总结
以上所述是小编给大家介绍的js计算两个日期间的天数月的实例代码,希望对大家有所帮助