Owl Carousel Uncaught TypeError:undefined不是Wordpress中的函数

时间:2014-12-10 09:08:29

标签: wordpress owl-carousel

我是一个开发自己的Wordpress主题。我正在使用Owl Carousel

但是从第1行收到此错误Uncaught TypeError: undefined is not a function并且未显示任何轮播项目。对不起我的英文不好。

$(document).ready(function() {

    $("#owl-demo").owlCarousel();

});

1 个答案:

答案 0 :(得分:12)

jQuery默认包含在WordPress中in no-conflict mode。在noConflict()模式下,jQuery的全局$快捷方式不可用,因此您需要使用:

jQuery(document).ready(function($) {
    // Inside of this function, $() will work as an alias for jQuery()
    // and other libraries also using $ will not be accessible under this shortcut
});