1

我正在使用来自https://github.com/rmm5t/jquery-timeago的 jQuery timeago 插件

它在页面加载时工作正常,但我在模态窗口中使用它生成了一些内容,.load它似乎并没有影响它。

要初始化 timeago 我有:

$(document).ready(function() {
    $('time.timeago').timeago();
});

这是我用来在模态中加载内容的 jQuery:

$(document).ready(function () {

    // on click, serialize all form elements and insert/update database
    $('.comment').click(function (e) {

        e.preventDefault();
        var $this = $(this);
        var csrf = $('input[name=csrf_gpin]').val();
        var pin_id = $this.closest('.grid-box').attr('data-id');

        $('input[name=comment_pin_id]').val(pin_id);

        $("#modal-comment").reveal();

        // load all comments associated with pin
        $("#comments").load('/comment/pin', { 'csrf_gpin' : csrf, 'pin_id' : pin_id });

    });
});

加载内容中的 HTML 是:

<time class="timeago" datetime="2012-11-19T20:35:14+01:00" title="November 19, 2012">2 days ago</time>

我怎样才能重新初始化 timeago 以便它可以处理这个生成的内容?

4

1 回答 1

1

timeago加载完成后尝试初始化:

$("#comments").load('/comment/pin', 
           { 'csrf_gpin' : csrf, 'pin_id' : pin_id },
           function(){   //A callback function that is executed when the request completes
               $(this).find('time.timeago').timeago();   
           });
于 2012-11-21T20:17:32.800 回答