有没有更好的方法来无限次重复一个函数?
而不是使用:
setTimeout(myfunction(), 10)
我将如何将其添加到其中?当我替换 setTimeout 时,订单变得很奇怪。
<img id="slideshow" src="4.JPG" alt="cheese" width="264" height="264"/>
<script>
source=["1.jpg", "2.JPG", "3.JPG", "4.JPG"];
var i=0
function show(){
document.getElementById("slideshow").src = source[i];
if (i<source.length - 1)
i++
else
i=0
setTimeout("show()",2500)
}
show()
</script>