window.οnlοad=function(){ var img=document.getElementById("img"); var listImg=document.getElementById("list-img") // 定义一个变量 var count=1; // 定义一个函数 function changeImgeSrc(){ count++; img.src="img/"+count+".jpg" // 判断 if(count==4){ count=1 } } // 定时器 window.setInterval(changeImgeSrc,2000) }
来源:51CTO
作者:让代码飞1926
链接:https://blog.csdn.net/qq_40596257/article/details/100707059