javascript时间差插件分享


Posted in Javascript onJuly 18, 2016

javascript时间差插件分享,供大家参考,具体内容如下

Html如下: 

<html>
  <head>
    <title></title>
    <script src="js/TimeDifference.js" type="text/javascript"></script>
    <script src="js/jquery-1.10.2-min.js" type="text/javascript"></script>
  </head>
  <body>
    <h2>该插件发布时间:<small id="allDemo"></small> </h2>
    <script type="text/javascript">
      $("#allDemo").text(timeDifference("2016-06-05 10:11:00"));
    </script>
    
    <font color="red" id="demo1Font">2016-06-03 10:20:23 </font><br>

    距离目前时间差:
    <strong><font color="red"><span id="timeDifferenceDemo1"></span></font></strong><br>
    
    <font color="red" id="demo2Font">2016-06-07 10:02:23 </font><br>
    距离目前时间差:
    <strong><font color="red"><span id="timeDifferenceDemo2"></span></font></strong>
  </body>
  
  <script type="text/javascript">
  $(document).ready(function(){
    //2016-5-3 10:20:23
    var demo1Result=timeDifference($("#demo1Font").text());
    $("#timeDifferenceDemo1").text(demo1Result);

    $("#timeDifferenceDemo2").text(timeDifference($("#demo2Font").text()));
  });
  </script>
</html>

 TimeDifference.js代码如下:

/**
 * 函数使用说明:
 *   1、直接调用函数 TimeDifference()
 *     返回说明: 返回距离当前的时间差
 * */
function timeDifference(tmpTime) {
  var mm=1000;//1000毫秒 代表1秒
  var minute = mm * 60;
  var hour = minute * 60;
  var day = hour * 24;
  var month = day * 30;
  var ansTimeDifference=0;//记录时间差
  var tmpTimeStamp = tmpTime ? Date.parse(tmpTime.replace(/-/gi, "/")) : new Date().getTime();//将 yyyy-mm-dd H:m:s 进行正则匹配
  var nowTime = new Date().getTime();//获取当前时间戳
  var tmpTimeDifference = nowTime - tmpTimeStamp;//计算当前与需要计算的时间的时间戳的差值
  if (tmpTimeDifference < 0) {        //时间超出,不能计算
    alert("开始日期大于结束日期,计算失败!");
    return 0;
  }
  /**
   * 通过最开始强调的各个时间段用毫秒表示的数值,进行时间上的取整,为0的话,则没有到达
   * */
  var DifferebceMonth = tmpTimeDifference / month;  //进行月份取整
  var DifferebceWeek = tmpTimeDifference / (7 * day);//进行周取整
  var DifferebceDay = tmpTimeDifference / day;//进行天取整
  var DifferebceHour = tmpTimeDifference / hour;//进行小时取整
  var DifferebceMinute = tmpTimeDifference / minute;//进行分钟取整
  if (DifferebceMonth >= 1) {
    return tmpTime;         //大于一个月 直接返回时间
  } else if (DifferebceWeek >= 1) {
    ansTimeDifference= parseInt(DifferebceWeek) + "个星期前";
  } else if (DifferebceDay >= 1) {
    ansTimeDifference = parseInt(DifferebceDay) + "天前";
  } else if (DifferebceHour >= 1) {
    ansTimeDifference = parseInt(DifferebceHour) + "个小时前";
  } else if (DifferebceMinute >= 1) {
    ansTimeDifference = parseInt(DifferebceMinute) + "分钟前";
  } else {
    ansTimeDifference = "刚刚";
  }
  return ansTimeDifference;
}

 结果如图:

javascript时间差插件分享

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
JS等比例缩小图片尺寸的实例
Feb 27 Javascript
浏览器页面区域大小的js获取方法
Sep 21 Javascript
使用 js+正则表达式为关键词添加链接
Nov 11 Javascript
js读取csv文件并使用json显示出来
Jan 09 Javascript
jQuery中(function($){})(jQuery)详解
Jul 15 Javascript
超全面的vue.js使用总结
Feb 12 Javascript
vue2.0+vue-router构建一个简单的列表页的示例代码
Feb 13 Javascript
怎么使用javascript深度拷贝一个数组
Jun 06 Javascript
nuxt+axios实现打包后动态修改请求地址的方法
Apr 22 Javascript
js实现从右往左匀速显示图片(无缝轮播)
Jun 29 Javascript
Vue ​v-model相关知识总结
Jan 28 Vue.js
Vue+TypeScript中处理computed方式
Apr 02 Vue.js
如何用js实现鼠标向上滚动时浮动导航
Jul 18 #Javascript
终于实现了!精彩的jquery弹幕效果
Jul 18 #Javascript
全面解析JavaScript中“&amp;&amp;”和“||”操作符(总结篇)
Jul 18 #Javascript
全面介绍javascript实用技巧及单竖杠
Jul 18 #Javascript
Bootstrap 布局组件(全)
Jul 18 #Javascript
js验证真实姓名与身份证号,手机号的简单实例
Jul 18 #Javascript
Bootstrap零基础入门教程(三)
Jul 18 #Javascript
You might like
《魔兽世界》惊魂幻象将获得调整
2020/03/08 其他游戏
将数字格式的计算结果转为汉字格式
2006/10/09 PHP
使用WAMP搭建PHP本地开发环境
2017/05/10 PHP
php写一个函数,实现扫描并打印出自定目录下(含子目录)所有jpg文件名
2017/05/26 PHP
angularjs的一些优化小技巧
2014/12/06 Javascript
通过js获取上传的图片信息(临时保存路径,名称,大小)然后通过ajax传递给后端的方法
2015/10/01 Javascript
jQuery搜索框效果实现代码(百度关键词联想)
2021/02/25 Javascript
修改jquery中dialog的title属性方法(推荐)
2016/08/26 Javascript
jQuery+ajax读取并解析XML文件的方法
2016/09/09 Javascript
微信小程序学习笔记之本地数据缓存功能详解
2019/03/29 Javascript
Express结合Webpack的全栈自动刷新
2019/05/23 Javascript
Angular单元测试之事件触发的实现
2020/01/20 Javascript
python通过pil将图片转换成黑白效果的方法
2015/03/16 Python
介绍Python中的fabs()方法的使用
2015/05/14 Python
Python切片工具pillow用法示例
2018/03/30 Python
78行Python代码实现现微信撤回消息功能
2018/07/26 Python
Python实现Dijkstra算法
2018/10/17 Python
python通过链接抓取网站详解
2019/11/20 Python
解决Pytorch训练过程中loss不下降的问题
2020/01/02 Python
python上下文管理器异常问题解决方法
2021/02/07 Python
纯CSS3绘制打火机动画火焰效果
2016/07/18 HTML / CSS
HTML5录音实践总结(Preact)
2020/05/07 HTML / CSS
西班牙英格列斯百货法国官网:El Corte Inglés法国
2017/07/09 全球购物
Sneaker Studio罗马尼亚网站:购买运动鞋
2018/11/04 全球购物
模具数控专业自荐信
2014/01/27 职场文书
优秀经理事迹材料
2014/02/01 职场文书
《最可爱的人》教学反思
2014/02/14 职场文书
共青团员自我评价范文
2014/09/14 职场文书
领导欢迎词范文
2015/01/26 职场文书
2015年七七事变78周年纪念活动方案
2015/05/06 职场文书
离婚起诉状范本
2015/05/19 职场文书
解析Redis Cluster原理
2021/06/21 Redis
Vue实现tab导航栏并支持左右滑动功能
2021/06/28 Vue.js
Java 写一个简单的图书管理系统
2022/04/26 Java/Android
MySQL数据库查询之多表查询总结
2022/08/05 MySQL
Vue Element plus使用方法梳理
2022/12/24 Vue.js