我正在使用jQuery缩略图滚动条。 http://manos.malihu.gr/jquery-thumbnail-scroller/
我已将.js文件和css文件链接在一起。
<link rel="stylesheet" href="plugins/scrollermaster/jquery.mThumbnailScroller.css">
<script src="plugins/jQuery/jQuery-2.2.0.min.js"></script>
<script href="plugins/scrollermaster/jquery.mThumbnailScroller.js"></script>
<script>
(function($){
$(window).load(function(){
$("#my-thumbs-list").mThumbnailScroller({ axis:"x" });
});
})(jQuery);
</script>
在身体..
<div id="my-thumbs-list">
<ul>
<li><a href="image-1-link"><img src="/path/to/image-1-file.jpg" /></a></li>
<li><a href="image-2-link"><img src="/path/to/image-2-file.jpg" /></a></li>
<li><a href="image-3-link"><img src="/path/to/image-3-file.jpg" /></a></li>
<li><a href="image-4-link"><img src="/path/to/image-4-file.jpg" /></a></li>
<!-- and so on... -->
</ul>
</div>
此代码对我无效。 google chorme(控制台)显示此错误
index.php:98未捕获 TypeError:$(...)。mThumbnailScroller不是函数