我在控制台中收到此错误。
未捕获的类型错误:对象 [object Object] 没有方法“bxSlider”
我不知道为什么会这样。我让所有这些工作完美,但是当我将它放入 NetSuite 商店时它停止工作。
这是在 NoConflict 中运行 jQuery 我不需要在插件中将所有“$”更改为 jQuery 吗?
这是我调用 jQuery、插件和它的脚本的地方。
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
<script type="text/javascript" src="/site/js/modernizr.custom.93936.js"></script>
<script src="/site/js/jquery.bxslider.js"></script>
<script>
jQuery(document).ready(function(){
jQuery('.bxslider').bxSlider({
auto: true,
controls: false
});
});
</script>
这是整个控制台错误。
Uncaught TypeError: Object [object Object] has no method 'bxSlider' dtv:57 (anonymous function) dtv:57 n jquery.min.js:2 o.fireWith jquery.min.js:2 e.extend.ready jquery.min .js:2 c.addEventListener.B
可能是什么原因让我迷失了方向,我一直在尝试我所知道的每一件小事,但没有任何效果。