我正在尝试使用flexsider创建一个滑块,但它没有在生产中加载。它在开发方面运作良好。我收到了这个错误:
未捕获的TypeError:$(...)。flexslider不是函数
以下是指向网站的链接:https://mybagicha.herokuapp.com/
jQuery(window).load(function(){
$('.flexslider').flexslider({
animation: "fade",
slideshowSpeed: 4000,
animationSpeed: 600,
controlNav: false,
directionNav: true,
controlsContainer: ".flex-container" // the container that holds the flexslider
});
});
答案 0 :(得分:0)
这意味着jQuery
未定义。如果您加载jQuery
两次,那么也会发生错误,请尝试弄清楚。
尝试将以下$
添加到
jQuery(window).load(function($) {
$('.flexslider').flexslider({
//Code here
});
});
希望能提供帮助