我的Chrome控制台中出现以下错误:
Uncaught TypeError: $(...).owlCarousel is not a function
这是代码:
$(".sb-content-931").owlCarousel({
items: 3,
baseClass: 'mom-carousel',
rtl: rtl,
autoplay: false,
autoplayTimeout: 5000,
autoplayHoverPause: true,
responsive: {
1000: {
items: 3
},
671: {
items: 3
},
480: {
items: 2
},
320: {
items: 1
}
}
});
答案 0 :(得分:2)
首先在头部添加jquery。
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
也
如果您使用的是wordpress,请在代码中用$
替换所有jQuery
个符号。 Wordpress使用'strict'
模式的Javascript,因此必须使用jQuery
代替$
答案 1 :(得分:0)