javascript时间差插件分享
来源: 阅读:756 次 日期:2016-07-26 15:38:58
温馨提示: 小编为您整理了“javascript时间差插件分享”,方便广大网友查阅!

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时间差插件分享
由于各方面情况的不断调整与变化, 提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:
云南网警报警专用图标
Baidu
map