• Js 日期 多少分钟前,多少秒前


    ;(function(window){
        /**
         * [dateDiff 算时间差]
         * @param  {[type=Number]} hisTime [历史时间戳,必传]
         * @param  {[type=Number]} nowTime [当前时间戳,不传将获取当前时间戳]
         * @return {[string]}         [string]
         */
        var dateDiff = function(hisTime,nowTime){
            if(!arguments.length) return '';
            var arg = arguments,
                now =arg[1]?arg[1]:new Date().getTime(),
                diffValue = now - arg[0],
                result='',
    
                minute = 1000 * 60,
                hour = minute * 60,
                day = hour * 24,
                halfamonth = day * 15,
                month = day * 30,
                year = month * 12,
    
                _year = diffValue/year,
                _month =diffValue/month,
                _week =diffValue/(7*day),
                _day =diffValue/day,
                _hour =diffValue/hour,
                _min =diffValue/minute;
    
                if(_year>=1) result=parseInt(_year) + "年前";
                else if(_month>=1) result=parseInt(_month) + "个月前";
                else if(_week>=1) result=parseInt(_week) + "周前";
                else if(_day>=1) result=parseInt(_day) +"天前";
                else if(_hour>=1) result=parseInt(_hour) +"个小时前";
                else if(_min>=1) result=parseInt(_min) +"分钟前";
                else result="刚刚";
                return result;
        }
        window.dateDiff = dateDiff
    })(window);
    dateDiff(new Date('1987-04-03').getTime()) //一定要转换成时间戳
    

      

  • 相关阅读:
    TF中的自定义正则项
    [工具]多线程下载 axel
    [算法]kv-memory 表示dense特征
    [code]tensorflow分桶
    [code]Keras API的用法记录
    vim显示下划线不高亮问题
    [代码] kv2sparse
    [代码]并发执行python的例子
    AI算法手册
    [工具]soundflower
  • 原文地址:https://www.cnblogs.com/szatpig/p/5128442.html
Copyright © 2020-2023  润新知