Timed refresh:
1, using settimeout
The code is as follows |
Copy Code |
<script language= "JavaScript" > function Myrefresh () { Window.location.reload (); } SetTimeout (' Myrefresh () ', 1000); Specify 1 seconds to refresh once </script> |
Description: URL is the page URL address to refresh
2000 is the wait time = 2 seconds,
2, using the refresh in meta
The code is as follows |
Copy Code |
< meta name= "Refresh" content= "N; URL "> Description: n is the number of seconds to wait before loading the specified URL. URL is a absolute URL to be loaded. |
N, is the time to wait, in seconds
URL is the URL address of the page to be refreshed
JavaScript refreshes the page in several ways:
code is as follows |
copy code |
1 history.go (0) 2 location.reload () 3 location=location 4 location.assign (location) 5 document.execcommand (' Refresh ') 6 window.navigate (location) 7 location.replace (location) 8 Document. Url=location.href |