每当其中一个标签动态地插入页面而不仅仅是在页面加载时,是否有办法调用$("attr.timeago").timeago()
?
答案 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?