程序运行时,屏幕上只显示最后一个数组值图像,其他图像不显示。
这是 HTML 代码
<img id="mg" alt="image not found">
这是javascript代码
var images=["image", "image2","img","imag"]
test();
function test(){
var index = 0;
for(var count=0; count<images.length; count++){
document.getElementById('mg').src = images[count] + ".jpg";
document.getElementById("mg").width = "500";
document.getElementById("mg").height = "300";
index = index + 1;
setTimeout(test, 1000);
if(index + 1 > images.length){
index = 0;
count = 0;
}
}
}
Qyouu
holdtom
一只斗牛犬
相关分类