Just add the following code to achieve it. Method 1: Using Meta Usage: <Meta http-equiv=Refresh Content=30> <Meta http-equiv="Refresh" Content="5; Url=http://sc.jb51.net"> The first statement is to stay for 30 seconds and automatically refresh, and the second one is to stay for 5 seconds and redirect to sc.jb51.net. Use them separately to achieve automatic refresh or automatic steering functions. The second method: js implementation setTimeout(function(){window.location.href = 'http://sc.jb51.net';},2000) The third js code with countdown Copy code The code is as follows:<html> <head> <title>Jump after 10 seconds</title> </head> <body> <input type="text" readonly="true" value="10" id="time"> </body> <script language="javascript"> var t = 10; var time = document.getElementById("time"); function fun(){ t--; time.value = t; if(t<=0){ location.href = "https://www.jb51.net"; clearInterval(inter); } } var inter = setInterval("fun()",1000); </script> </html> The page jump function can of course be implemented using js, but the advantage of the above code is that it can also be used when the browser does not support js. If you want to achieve a real-time countdown effect, you need to use js to implement it. Generally, you can combine the two to make a judgment. javascript page jump method collection page jump code implemented using meta |
<<: Detailed explanation of vue-router 4 usage examples
>>: Detailed tutorial on installing CentOS, JDK and Hadoop on VirtualBox
This article uses examples to illustrate the prin...
Fault description percona5.6, mysqldump full back...
There are many scripts on the Internet that use e...
Result: Implementation code: Need to be used with...
1. Single machine environment construction# 1.1 D...
This article shares with you the installation and...
Written in front Environment: MySQL 5.7+, MySQL d...
In the MySQL database, null is a common situation...
There are three main ways of MySQL replication: S...
environment: 1. Windows Server 2016 Datacenter 64...
Table of contents Download the compressed file Ad...
Table of contents Linux MySQL 5.5 upgraded to MyS...
Problem: The MySQL database crashed unexpectedly ...
Today, let’s discuss an interesting topic: How mu...
This article uses examples to explain the concept...