js中如何将字符串转化为时间,并计算时间差

Posted 平常心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中如何将字符串转化为时间,并计算时间差相关的知识,希望对你有一定的参考价值。

在前台页面开发时通常会用到计算两个时间的时间差,先在此附上实现方法

 

[javascript] view plain copy
 
 技术分享技术分享
  1. //结束时间  
  2. end_str = ("2014-01-01 10:15:00").replace(/-/g,"/");//一般得到的时间的格式都是:yyyy-MM-dd hh24:mi:ss,所以我就用了这个做例子,是/的格式,就不用replace了。  
  3. var end_date = new Date(end_str);//将字符串转化为时间  
  4. //开始时间  
  5. sta_str = ("2014-01-01 10:15:00").replace(/-/g,"/");  
  6. var sta_date = new Date(sta_str);  
  7. var num = (end_date-sta_date)/(1000*3600*24);//求出两个时间的时间差,这个是天数  
  8. var days = parseInt(Math.ceil(num));//转化为整天(小于零的话剧不用转了)  
  9.   
  10. //下面才附上js中一些针对时间类操作的方法  
  11. var myDate = new Date();    
  12.     myDate.getYear();      //获取当前年份(2位)    
  13.     myDate.getFullYear(); //获取完整的年份(4位,1970-????)    
  14.     myDate.getMonth();      //获取当前月份(0-11,0代表1月)    
  15.     myDate.getDate();      //获取当前日(1-31)    
  16.     myDate.getDay();        //获取当前星期X(0-6,0代表星期天)    
  17.     myDate.getTime();      //获取当前时间(从1970.1.1开始的毫秒数)    
  18.     myDate.getHours();      //获取当前小时数(0-23)    
  19.     myDate.getMinutes();    //获取当前分钟数(0-59)    
  20.     myDate.getSeconds();    //获取当前秒数(0-59)    
  21.     myDate.getMilliseconds(); //获取当前毫秒数(0-999)    
  22.     myDate.toLocaleDateString();    //获取当前日期    
  23.     var mytime=myDate.toLocaleTimeString();    //获取当前时间    
  24.     myDate.toLocaleString( );      //获取日期与时间----如果涉及到时分秒,直接使用即可。   

以上是关于js中如何将字符串转化为时间,并计算时间差的主要内容,如果未能解决你的问题,请参考以下文章

js 中日期 转换成时间戳 例如2013-08-30 转换为时间戳

pandas使用to_datetime函数将字符串时间数据列转化为时间对象数据列计算dataframe结束时间列和起始时间列的时间差并计算时间差的中位数(median)

js 时间字符串转化为时间

js怎么把时间戳转换为日期格式

pandas将dataframe中日期字符串数据列和时间字符串数据列合并成完整时间字符串并使用to_datetime将字符串格式转化为时间格式

sql server 怎样将字符串转化为时间格式