1

John Resig のブログで次のスニペットを見つけました。

function prettyDate(time){
    var date = new Date((time || "").replace(/-/g,"/").replace(/[TZ]/g," ")),
        diff = (((new Date()).getTime() - date.getTime()) / 1000),
        day_diff = Math.floor(diff / 86400);

    if ( isNaN(day_diff) || day_diff < 0 || day_diff >= 31 )
        return;

    return day_diff == 0 && (
            diff < 60 && "just now" ||
            diff < 120 && "1 min" ||
            diff < 3600 && Math.floor( diff / 60 ) + " mins" ||
            diff < 7200 && "1 hour" ||
            diff < 86400 && Math.floor( diff / 3600 ) + " hours") ||
        day_diff == 1 && "Yesterday" ||
        day_diff < 7 && day_diff + " d" ||
        day_diff < 31 && Math.ceil( day_diff / 7 ) + " w";
}

// If jQuery is included in the page, adds a jQuery plugin to handle it as well
if ( typeof jQuery != "undefined" )
    jQuery.fn.prettyDate = function(){
        return this.each(function(){
            var date = prettyDate(this.title);
            if ( date )
                jQuery(this).text( date );
        });
    };

サーバーのタイムゾーンはUTCです。このコードがどのタイムゾーンで動作するかわかりません。

私のhtmlでは、次のように時間をレンダリングします。

<span id="p-date">2012-09-26T00:12:15</span>

するつもり

  $(function() {
  $("#p-date").prettyDate();
  setInterval(function(){ $("#p-date").prettyDate(); }, 5000);
  });

時間を人間化する?

4

2 に答える 2

1

少し変更を加えるだけで、機能するはずです:http: //jsfiddle.net/gfPwa/

現在のプラグインでは、を使用して日付文字列が抽出されていますが、this.titleこれは何も返しません<span>。あなたの場合、代わりにを使用して日付文字列を抽出できます$this.text()

if ( typeof jQuery != "undefined" )
    jQuery.fn.prettyDate = function(){
        return this.each(function(){
            var $this = jQuery(this),   // cache jQuery(this)
                date = prettyDate($this.text());  // get date string from .text()
            if ( date )
                $this.text( date );
        });
    };
于 2012-09-26T12:59:20.410 に答える