0

我正在使用 jQuery .load 将内容加载到我的页面中,效果很好,但是我的省略号 jQuery 库不再适用于加载的内容。省略号 JQuery 在我的段落末尾添加了“...”,但不再有效,因为它现在是加载的内容。

<script>
   $(document).ready(function() {
       $('.article1 p').ellipsis();   // worked before using .load
       $(".article1").load("/inc/latest-articles.asp #article1");    
   });
</script>

有没有我错过的技巧?谢谢你的时间!

4

1 回答 1

1

Load the document first so that $('.article1 p') isn't empty when you call your plugin :

$(".article1").load("/inc/latest-articles.asp #article1", function(){
   $('.article1 p').ellipsis();   
});
于 2013-11-12T19:58:57.053 回答