如何使用jQuery的.on?

时间:2013-08-14 19:43:11

标签: javascript jquery

每当其中一个标签动态地插入页面而不仅仅是在页面加载时,是否有办法调用$("attr.timeago").timeago()

我的用例:jQuery's .on() for jQuery TimeAgo

1 个答案:

答案 0 :(得分:0)

您可以使用load事件,但我不确定它有多可靠:

$('body').on('load', 'attr.timeago', function (){
    $(this).timeago();
});

但更现实的是,您可能希望使用类似jQuery的livequery插件。

看一下这个问题:Is there a jquery event that fires when a new node is inserted into the dom?