我使用jquery 1.11并将此代码加载到侧边栏中的ajax加载wordpress帖子内容。一切都很好,但猫头鹰旋转木马的jquery功能不起作用,邮件内容中的旋转木马没有显示任何内容。 ajaxify代码加载帖子内容:
$(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;
});
});
有没有办法解决这个问题和冲突? 最好的问候。
答案 0 :(得分:0)
这对我有用:
jQuery(function () {
jQuery(document).ready(function () {
setInterval(function () {
jQuery(".owl-carousel").owlCarousel();
}, 1500);
});
});