0

有没有更好的方法来无限次重复一个函数?

而不是使用:

    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>
4

3 回答 3

3

您正在寻找window.setInterval(function, 1000);

于 2013-01-09T01:10:04.077 回答
0
(function(){

  var images = ['1.jpg', '2.jpg', '3.jpg', '4.jpg'],
      img = document.getElementById('blerg');

  setInterval(function(){

    img.src = images[0];

    images.push(images.shift());

  }, 2500)

})();
于 2013-01-09T02:33:03.963 回答
-1

或者while(true) hangTheBrowser();

于 2013-01-09T01:12:57.340 回答