This article shares the effect of the js browser countdown jump page for your reference. The specific content is as follows
Reproduction image:
<!DOCTYPE html><html> <head> <title>Browser object</title> <meta http-equiv="Content-Type" content="text/html; charset=gb123"/> </head> <body> <H4>The operation was successful</H4> <p> <b id="second">5</b> Return to the homepage after 5 seconds<a href="javascript:goBack();">Return</a> </p> <script type="text/javascript"> var sec = document.getElementById("second"); var i = 5; var timer = setInterval(function(){ i--; sec.innerHTML = i; if(i==1){ window.location.href = "//www.VeVB.COM"; } },1000); function goBack(){ window.history.go(-1); } </script> </body></html>The above is all the content of this article. I hope it will be helpful to everyone's learning and I hope everyone will support Wulin.com more.