我使用jquery 1.11和这段代码在侧栏中ajax加载wordpress帖子内容。一切都很好,但owl carousel的jquery功能不起作用,帖子内容中的carousel没有显示任何内容。用于加载帖子内容的ajaxify代码:
jQuery(document).ready(function($){
$.ajaxSetup({cache:false});
$(".post-link").click(function(){
var post_link = $(this).attr("href")+\' #content\';
$("#single-post-container").html("loading ...");
$("#single-post-container").load(post_link);
return false;
});
});
如何使用。函数的作用是:在ajax加载后加载owl转盘。顺致敬意,