SoFunction
Updated on 2025-04-03

Two ways to automatically jump after n seconds JS

This article shares two methods of JS automatically jump after n seconds for your reference. The specific content is as follows

The first useSetInterval

$(function () {

   setInterval(ChangeTime, 1000);
  });
  function ChangeTime() {
   var time;
   time = $("#time").text();
   time = parseInt(time);
   time--;
   if (time <= 0) {
     = "/Home/Index";
   } else {
    $("#time").text(time);
   }

  }

The second useSetTimeout

$(function () {

   setTimeout(ChangeTime, 1000);

  });

  function ChangeTime() {
   var time;
   time = $("#time").text();  
   time = parseInt(time);
   time--;
   if (time &lt;= 0) {
     = "/Home/Index";
   } else {
    $("#time").text(time);
    setTimeout(ChangeTime, 1000);

   }

  }

&lt;div&gt;The page you visited has an exception,&lt;span &gt;5&lt;/span&gt;Skip to the home page automatically in seconds&lt;/div&gt;

The above is all about this article, I hope it will be helpful for everyone to learn JavaScript programming.