我正在使用:
这是我正在使用的JQuery代码:
$(document).ready(function() {
$("#owl-images").owlCarousel({
items : 3,
itemsDesktop : [1199,3],
itemsDesktopSmall: [979,2],
itemsTablet : [768,1],
lazyLoad : true,
navigation : false,
autoPlay : true,
autoHeight: true
});
});
$(document).ready(function() {
$("#owl-videos").owlCarousel({
items : 3,
itemsDesktop : [1199,3],
itemsDesktopSmall: [979,2],
itemsTablet : [768,1],
lazyLoad : true,
navigation : false,
autoPlay : true,
autoHeight: true
});
});
我在this问题中读到了wordpress与jquery的混淆,但我甚至改为:
jQuery(document).ready(function() {
jQuery("#owl-images").owlCarousel({
items : 3,
itemsDesktop : [1199,3],
itemsDesktopSmall: [979,2],
itemsTablet : [768,1],
lazyLoad : true,
navigation : false,
autoPlay : true,
autoHeight: true
});
});
jQuery(document).ready(function() {
jQuery("#owl-videos").owlCarousel({
items : 3,
itemsDesktop : [1199,3],
itemsDesktopSmall: [979,2],
itemsTablet : [768,1],
lazyLoad : true,
navigation : false,
autoPlay : true,
autoHeight: true
});
});
但仍然没有工作,仍在
未捕获的TypeError:undefined不是函数
答案 0 :(得分:6)
这意味着您的插件不包含在内
以相同的优先顺序包含以下内容
还要确保脚本链接未提供404
答案 1 :(得分:5)
jQuery(document).ready(function($) {
$("#owl-images").owlCarousel({
items : 3,
itemsDesktop : [1199,3],
itemsDesktopSmall: [979,2],
itemsTablet : [768,1],
lazyLoad : true,
navigation : false,
autoPlay : true,
autoHeight: true
});
});
jQuery(document).ready(function($) {
$("#owl-videos").owlCarousel({
items : 3,
itemsDesktop : [1199,3],
itemsDesktopSmall: [979,2],
itemsTablet : [768,1],
lazyLoad : true,
navigation : false,
autoPlay : true,
autoHeight: true
});
});
答案 2 :(得分:3)
我的回答有点迟了,但我希望它有助于其他人。
jQuery(document).ready(function($) {
$("#owl-images").owlCarousel({
items : 3,
itemsDesktop : [1199,3],
itemsDesktopSmall: [979,2],
itemsTablet : [768,1],
lazyLoad : true,
navigation : false,
autoPlay : true,
autoHeight: true
});
});
jQuery(document).ready(function($) {
$("#owl-videos").owlCarousel({
items : 3,
itemsDesktop : [1199,3],
itemsDesktopSmall: [979,2],
itemsTablet : [768,1],
lazyLoad : true,
navigation : false,
autoPlay : true,
autoHeight: true
});
});