我有 HTML,其中包含以下顺序的脚本
<script src="../static/js/jquery.js" type="text/javascript">
<script src="../static/js/bootstrap.js" type="text/javascript">
<script src="../static/js/slides.js" type="text/javascript">
<script src="../static/js/app.js" type="text/javascript">
并且图像与 div 绑定为
<div id="slideshow">
<div id="slides">
<img src="../static/img/slideshow/01.JPG">
<img src="../static/img/slideshow/02.JPG">
<img src="../static/img/slideshow/03.JPG">
<img src="../static/img/slideshow/04.JPG">
<img src="../static/img/slideshow/05.JPG">
<img src="../static/img/slideshow/06.JPG">
</div>
</div>
JQuery v1.7.2在哪里jquery.js
并且slide.js
是最新的 slide.js 下载。
对我来说,这似乎也是正确的顺序。我app.js
做的是
$(function(){
$('#slides').slides({
width: 600,
height: 120,
pagination: false,
previous: false
});
$('#slides').slides("play");
});
我在 Firefox 和 Chrome 上都试过了,它似乎不起作用,我所有的图像都一个接一个地显示
我在这里没有做什么?