最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - setTimeout creates an infinite loop - Stack Overflow

programmeradmin2浏览0评论

I tried to display different images randomly one by one by changing the src of the img tag.

<img src="dravid-young.jpg" width="350" height="460">
<script type="text/javascript">

var a= new Array ("dravid-childhood.jpg", "dravid-young.jpg", "Jellyfish.jpg", "Tulips.jpg" , "Lighthouse.jpg" , "Penguins.jpg");

$(document).ready(function(){
    var rand = a[Math.floor(Math.random()*a.length)];
    changeimage(a[Math.floor(Math.random()*a.length)]);
});


function changeimage(imag)
{
    $("img").attr("src",imag);
    setTimeout(changeimage(a[Math.floor(Math.random()*a.length)]), 5000);
}

</script>

But it looks like created an infinite loop, the page keep on loading!!

I tried to display different images randomly one by one by changing the src of the img tag.

<img src="dravid-young.jpg" width="350" height="460">
<script type="text/javascript">

var a= new Array ("dravid-childhood.jpg", "dravid-young.jpg", "Jellyfish.jpg", "Tulips.jpg" , "Lighthouse.jpg" , "Penguins.jpg");

$(document).ready(function(){
    var rand = a[Math.floor(Math.random()*a.length)];
    changeimage(a[Math.floor(Math.random()*a.length)]);
});


function changeimage(imag)
{
    $("img").attr("src",imag);
    setTimeout(changeimage(a[Math.floor(Math.random()*a.length)]), 5000);
}

</script>

But it looks like created an infinite loop, the page keep on loading!!

Share Improve this question edited Oct 14, 2013 at 15:58 Barmar 783k57 gold badges548 silver badges660 bronze badges asked Oct 14, 2013 at 15:55 rajuraju 1291 gold badge2 silver badges8 bronze badges 5
  • 7 ... because you're calling changeimage each time in the setTimeout – Eric Hotinger Commented Oct 14, 2013 at 15:57
  • 1 Your changeimage function unconditionally calls changeimage -- what did you expect? Your code doesn't actually call setTimeout until changeimage returns -- which it never does. – David Schwartz Commented Oct 14, 2013 at 15:58
  • Not to mention that you're trying to pick a random image index 3 times in your code when it's only required once – Basic Commented Oct 14, 2013 at 15:58
  • What do you mean by : "the page keep on loading" ? – Brewal Commented Oct 14, 2013 at 15:59
  • You are doing a recursion! – Daniele Vrut Commented Oct 14, 2013 at 15:59
Add a ment  | 

3 Answers 3

Reset to default 8

Pass a function that invokes your function instead of invoking your function directly.

setTimeout(function() {
    changeimage(a[Math.floor(Math.random()*a.length)]);
}, 5000);

You were invoking changeimage immediately, which does an immediate recursion instead of waiting.

By passing a function which invokes changeimage, it will wait for 5000ms before invoking it.


To be clear, I was just replacing the erroneous code above. The rest should stay in place. Here's the final example.

function changeimage(imag) {
    $("img").attr("src",imag);

    setTimeout(function() {
        changeimage(a[Math.floor(Math.random()*a.length)]);
    }, 5000);
}

When you call a function from within the same function it creates a loop, and if you don't stop it, it's an infinite loop.

The problem is that you are calling changeimage in each changeimage call so you'll face a loop.

But you are executing a function each interval so you can use a setInterval

https://developer.mozilla/en-US/docs/Web/API/Window.setInterval

Like:

var a = new Array("http://placehold.it/200x200", "http://placehold.it/500x500", "http://placehold.it/300x300", "http://placehold.it/400x400", "http://placehold.it/300x300", "http://placehold.it/200x200");

var intervalID = window.setInterval(changeimage, 1000);

function changeimage() {    
    $("img").prop("src", a[Math.floor(Math.random() * a.length)]);    
    console.log($("img").prop("src"))
}

Demo: http://jsfiddle/IrvinDominin/Xggb5/2/

发布评论

评论列表(0)

  1. 暂无评论