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 <= 0) { = "/Home/Index"; } else { $("#time").text(time); setTimeout(ChangeTime, 1000); } } <div>The page you visited has an exception,<span >5</span>Skip to the home page automatically in seconds</div>
The above is all about this article, I hope it will be helpful for everyone to learn JavaScript programming.