JavaScript Implementation page timed refresh (timer, meta) _javascript tips

Source: Internet
Author: User

Next go to the topic-the way to refresh the page regularly:

1. See timing, it is easy to think of JS timer:

The first method
//Because we already have a timer, so just add a word to refresh the page in the timer test to
function test () {
h1.style.color = "Red";
H1.innertext = "I have changed";
History.go (0);//Can be replaced by any one of the previous blog methods.
}
SetInterval (test, 1000);

2. Use Meta to set:

<!--the second method-->
<!--automatic refresh, content indicates the refresh interval, in seconds s, the following code indicates that the page is refreshed once every three seconds-->
<meta http-equiv= " Refresh "content=" 3 >
<!--the third method-->
<!--This method to achieve page refresh a bit opportunistic, this label function is a timed jump, the content of the first parameter to indicate the interval time, The unit is seconds, the second parameter represents the destination URL, but if the second parameter is set to #, the page refresh is implemented. -->
<meta http-equiv= "Refresh" content= "3;url=#" >

The above is a small set of JavaScript to introduce the implementation of the page timing refresh (timer, meta), I hope to help you, if you have any questions please give me a message, small series will promptly reply to everyone. Here also thank you very much for the cloud Habitat Community website support!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.