zoukankan      html  css  js  c++  java
  • JAVASCRIPT中 日期相减

    //JAVASCRIPT中 日期相减很麻烦 ,现在有现成的实现方法,拷贝过去就可以用了,方便

    //调用该方法(主方法)
    function dateDiff(date1, date2){
        var type1 = typeof date1, type2 = typeof date2;
        if(type1 == 'string')
        date1 = stringToTime(date1);
        else if(date1.getTime)
        date1 = date1.getTime();
        if(type2 == 'string')
        date2 = stringToTime(date2);
        else if(date2.getTime)
        date2 = date2.getTime();
        return (date1 - date2) / 1000;//结果是秒
    }

    //字符串转成Time(dateDiff)所需方法
    function stringToTime(string){
        var f = string.split(' ', 2);
        var d = (f[0] ? f[0] : '').split('-', 3);
        var t = (f[1] ? f[1] : '').split(':', 3);
        return (new Date(
        parseInt(d[0], 10) || null,
        (parseInt(d[1], 10) || 1)-1,
        parseInt(d[2], 10) || null,
        parseInt(t[0], 10) || null,
        parseInt(t[1], 10) || null,
        parseInt(t[2], 10) || null
        )).getTime();

    }

    //调用 dateDiff("2009-10-10 19:00:00","2009-10-10 18:00:00")

    返回的是秒钟


    本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/ago52030/archive/2009/12/11/4987199.aspx

  • 相关阅读:
    Linux Shell 基本语法
    VIM选择文本块/复制/粘贴
    linux vi命令详解2
    SSH命令详解2
    JAVA调用Shell脚本
    scp命令的用法详解
    Java实践 — SSH远程执行Shell脚本
    Remote SSH: Using JSCH with Expect4j
    c++内置函数---7
    c++将引用作为函数的参数---6
  • 原文地址:https://www.cnblogs.com/kevinge/p/1722613.html
Copyright © 2011-2022 走看看