setTimeout() is not waiting

时光怂恿深爱的人放手 提交于 2019-12-27 11:47:12

问题


I am trying to make a seconds countdown with Javascript.

Here is my HTML

<div id="ban_container" class="error center">Please wait
        <span id="ban_countdown" style="font-weight:bold">
        45</span>
        seconds before trying again
</div>

And my JS:

<script type="text/javascript">
    var seconds = <?php echo $user->getBlockExpiryRemaining(); ?>;

    function countdown(element) {
        var el = document.getElementById(element);

        if (seconds === 0) {
            document.getElementById("ban_container").innerHTML = "done";
            return;
        }
        else {
            el.innerHTML = seconds;
            seconds--;
            setTimeout(countdown(element), 1000);
        }
    }

    countdown('ban_countdown');
</script>

However for some reason, it is not waiting the timeout time, but instead executes countdown right away so that when I refresh the page it just displays "done" right away. I know it is actually being executed multiple times because if I do innerHTML += seconds + " "; it counts down from 45. Why is the timeout being bypassed?


回答1:


setTimeout(countdown(element), 1000); executes your function with that argument and passes the result into setTimeout. You don't want that.

Instead, execute an anonymous function that calls your function:

setTimeout(function() {
    countdown(el);  // You used `el`, not `element`?
}, 1000);



回答2:


It is because setTimeout is asynchroneous. Try this:

setTimeout(function(){
   countdown('ban_countdown'); //or elemement
}, 1000);

This will make the function countdown execute after 1000 miliseconds.




回答3:


If you'd like to pass an argument to a function by setTimeout, try this:

setTimeout(countdown, 1000, element);

The syntax of setTimeout is the following:

setTimeout(function,milliseconds,param1,param2,...)


来源:https://stackoverflow.com/questions/15171266/settimeout-is-not-waiting

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!