加载AJAX后OWL旋转木马无法工作

时间:2015-01-12 作者:Khosravi.em

我使用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转盘。顺致敬意,

1 个回复
SO网友:Howdy_McGee

默认情况下无法使用此选项的原因是没有冲突。

抄本:

WordPress附带的jQuery库设置为noConflict() 模式(请参阅wp-includes/js/jquery/jquery.js). 这是为了防止与WordPress可以链接的其他JavaScript库的兼容性问题。

noConflict() 模式,全局$ jQuery的快捷方式不可用,因此您仍然可以使用:

jQuery(document).ready(function($){
    $.ajaxSetup({cache:false});
    ...
});

Read More in Codex

结束

相关推荐

是否将核心jQuery放入页脚?

我有这个functions.php 文件,我无法将jQuery加载到页脚中。这个includes 不过,文件在页脚中加载很好。我还需要做什么?function starter_scripts() { wp_enqueue_style( \'starter-style\', get_stylesheet_uri() ); wp_enqueue_script( \'jquery\', \'\', \'\', \'\', true ); wp_