我是一个开发自己的Wordpress主题。我正在使用Owl Carousel
但是从第1行收到此错误Uncaught TypeError: undefined is not a function
并且未显示任何轮播项目。对不起我的英文不好。
$(document).ready(function() {
$("#owl-demo").owlCarousel();
});
答案 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
});