网址: http: //www.gws-mbca.org
幻灯片放映在 Firefox 中有效。它曾经在 IE 和 Chrome 中工作。现在我在 IE 和 Chrome 中都收到以下错误:
未捕获的类型错误:无法设置未定义的属性“src”
该脚本使用<script type="...>
文档头中的 a 链接。
网页中的代码如下:
<section style="margin: 0 auto; text-align: center;">
<img src="./rPix/rp1.jpg" id="slide" width="900" height="200" alt="slide show images" />
</section>
<body onload="runShow();">
该函数runShow
是 slideshow.js 的一部分 - 代码如下:
/* An automatically rotating slide show using Javascript and the DOM.
This script cobbled together by Paul D.J. Vandenberg */
var j = 1;
var pix = new Array(11);
for (i = 0; i < pix.length; i++) {
pix[i] = "rPix/rp"+j+".jpg";
j++;
}
var index = Math.floor(Math.random() * 11) + 1;
var limit = pix.length - 1;
function runShow() {
if (index > limit) {
index = 0;
}
document.slide.src = pix[index];
setTimeout("runShow()", 10000);
index++;
}