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

c# - Countdown timer? - Stack Overflow

programmeradmin1浏览0评论

How do you make a Countdown timer?

When the user loads the page, clock starts counting down, it reaches time, it redirects browser to a new page.

Found this, it was not too useful. /

How do you make a Countdown timer?

When the user loads the page, clock starts counting down, it reaches time, it redirects browser to a new page.

Found this, it was not too useful. http://encosia./2007/07/25/display-data-updates-in-real-time-with-ajax/

Share Improve this question asked May 14, 2010 at 14:54 001001 65.2k99 gold badges238 silver badges357 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 10

Something like this?

   <div id="countDiv"></div>

    <script>
    function countDown (count) {
      if (count > 0) {
       var d = document.getElementById("countDiv");
       d.innerHTML = count;
       setTimeout (function() { countDown(count-1); }, 1000);
       }
      else
       document.location = "someotherpage.html";
    }
    countDown(5);
    </script>

Probably the easiest thing to do would be to use the Timer class.

with pure javascript you could do it like this

window.onload=function(){ // makes sure the dom is ready
  setTimeout('function(){document.location = "http://www.google."}', 10000) // redirects you to google after 10 seconds
}
<p>
    When this counter reaches 0, you will be redirected to
    <a href="http://path.to.wherever/" id="redirectme">wherever</a>.
    <span id="counter">10</span>
</p>
<script type="text/javascript">
(function(){

    var
        counter = document.getElementById("counter"),
        count = parseInt(counter.innerHTML),
        url = document.getElementById("redirectme").href,
        timer;

    function countdown() {
        count -= 1;
        counter.innerHTML = count;
        if (count <= 0) {
            clearTimeout(timer);
            window.location.assign(url);
        }
    }

    timer = setInterval(countdown, 1000); // 1000 ms

})();
</script>
发布评论

评论列表(0)

  1. 暂无评论