我之前在测试页面中使用过这段代码,效果很好,
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<script src="jQuery/jquery-1.11.0.js"></script>
<script src="jQuery/jcarousellite_1.0.1.min.js"></script>
<script>
$(function () {
var myCounter = $('li').length;
$(".nonCircular .carousel").jCarouselLite({
btnNext: ".next",
visible: 1,
circular: false
});
var counter = 0;
$('.next').on('click', function () {
counter = counter + 1;
if (counter == myCounter)
window.location.href('Fraga.aspx');
});
});
</script>
但是当我将代码复制并粘贴到最终页面时,它仍然会抛出此错误..
JavaScript runtime error: Object doesn't support property or method 'jCarouselLite'
我之前有另一个插件出现此错误,但那是因为我忘了添加一个部分,但这是测试页面中的确切代码,我把脚本放在同一个区域,所以它应该工作当我复制并粘贴代码时。但事实并非如此。
这是我的标记......
<div class="nonCircular">
<div class="carousel">
<ul>
<li><img src="images/1.png" height="400" alt=""></li>
<li><img src="images/2.png" width="600" height="400" alt=""></li>
<li><img src="images/3.png" width="600" height="400" alt=""></li>
<li><img src="images/4.png" width="600" height="400" alt=""></li>
</ul>
</div>
</div>
这是我的.next标记
<div style="width:50px; height:50px; background:#f00;" class="next"></div>
答案 0 :(得分:2)
不同的jQuery插件可能会发生冲突,例如: bootstrap和jCarouselLite,而standalone version工作正常
^
|
fiddle