x seconds ago
MySQLのタイムスタンプに基づいて表示したい。
timeagoというプラグインを見つけました
しかし、秒だけ表示する方法が見つかりません。
61秒でもいいし、300秒でもいい。timeago または純粋な jQuery/JavaScript を使用して出力を秒に変換する方法はありますか?
助けてくれてありがとう!
編集:
サンプルケース:
$time1 = "2014-02-02 23:54:04"; // plus PHP ways to format it.
//$time2 = NOW() , or date(); whatever.
から何秒か取得したいだけです$time1
。
編集2:
作業コード:
<script type="text/javascript">
$(function(){
var d2 = new Date();
var d1 = new Date("2014-02-02 23:54:04");
$("a#timedif").html("Diff. Seconds : "+((d2-d1)/100).toString());
// note that you may want to round the value
});
</script>
出力しますDiff. Seconds : NaN