我是PHP程序员,主要在我的网站上使用jquery插件。令我讨厌的问题是在单页网站上放置两个幻灯片放映。一次只能运行一个幻灯片。
这是我正在使用的代码.. 第一个滑块的链接...
<script>window.jQuery || document.write('<script src="js/jquery-1.6.1.min.js"><\/script>')
</script>
<script src="js/jquery.smoothscroll.js"></script>
<script src="js/jquery.nivo.slider.pack.js"></script>
<script src="js/jquery.easing-1.3.pack.js"></script>
<script src="js/jquery.fancybox-1.3.4.pack.js"></script>
<script src="js/init.js"></script>
第二个链接..
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<!-- the jScrollPane script -->
<script type="text/javascript" src="js/jquery.mousewheel.js"></script>
<script type="text/javascript" src="js/jquery.contentcarousel.js"></script>
<script type="text/javascript">
$('#ca-container').contentcarousel();
</script>
希望我能事先得到具体的答案.. thanx
答案 0 :(得分:0)
不确定这是否是问题,但你有
<script type="text/javascript">
$('#ca-container').contentcarousel();
</script>
应该是:
<script type="text/javascript">
$(function() { $('#ca-container').contentcarousel(); });
</script>
所以它从页面加载开始,而不是取决于它在脚本中的位置。点击此处:http://api.jquery.com/ready/