获取时间差:发表评论或者其他内容时显示时间为几秒前,几小时前

首先声明:我参考了下面的新浪博客然后加以完善,感谢

通过获取当前时间减去发表时间获得时间差。

点击打开链接

/----------获取时间差----------/
function getTime(oldTime,newTime){
    var display;
    var   strDate1  =oldTime;
    var   strDate2   = newTime;
    strDate1=strDate1.substring(0,strDate1.lastIndexOf(".")).replace(/-/g, "/ ");
    strDate2=strDate2.substring(0,strDate2.lastIndexOf(".")).replace(/-/g, "/ ");
    //去掉毫秒 把-替换成/ 如果不替换转成时间戳类型火狐会出问题
    var   date1   =  Date.parse(strDate1);
    var   date2   =  Date.parse(strDate2);
    //alert( "strDate2与strDate1相差 "+(date2-date1)/(1000)+ "秒");
    if((date2-date1)/(24*60*60*1000*365)>1){
        display=Math.round((date2-date1)/(24*60*60*1000*365))+"年前";
    }
    else if ((date2-date1)/(24*60*60*1000)>1) {
        display=Math.round((date2-date1)/(24*60*60*1000))+"天前";
    }
        else if((date2-date1)/(60*60*1000)>1) {
            display=Math.round((date2-date1)/(60*60*1000))+"小时前";
        }
        else if((date2-date1)/(60*1000)>1){
            display=Math.round((date2-date1)/(60*1000))+"分钟前";
        }
        else {
            display=(date2-date1)/(1000)+"秒前";
        }
    return display;
    }



评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值