這裡要注意的是js的時間戳記是13位,php的時間戳是10位,轉換函數如下:
var nowtime = (new Date).getTime();/*目前時間戳*/
/*轉換時間,計算差值*/
function comptime (beginTime,endTime){
var secondNum = parseInt((endTime-beginTime*1000)/1000);//計算時間戳差值
if(secondNum>=0&&secondNumreturn secondNum>=0&&secondNumreturn secondNum '秒前';
}
else if (secondNum>=60&&secondNumvar nTime=parseInt(secondNum/60);
return nTime '分鐘前';
}
else if (secondNum>=3600&&secondNumvar nTime=parseInt(secondNum/3600);
return nTime '小時前';
}
>var nTime = parseInt(secondNum/86400);
return nTime '天前';
}
}
t = comptime("1324362556",nowtime);//timestamp為PHPajax回傳的時間戳記
alert(t);