3 codes for automatic refresh of web pages

3 codes for automatic refresh of web pages
In fact, it is very simple to achieve this effect, and this effect cannot even be called a special effect. All you have to do is add the following code to your web page.

1. Automatic page refresh: Add the following code to the <head> area

<meta http-equiv="refresh" content="20">, where 20 means refreshing the page every 20 seconds.

2. Automatic page jump: Add the following code to the <head> area

<meta http-equiv="refresh" content="20;url=https://www.jb51.net">, where 20 means jumping to https://www.jb51.net page after 20 seconds

3. Page automatic refresh js version

<script language="JavaScript">
function myrefresh(){
window.location.reload();
}
setTimeout('myrefresh()',1000); //Specify refresh once every 1 second
</script>

<<:  Ten popular rules for interface design

>>:  Introduction to using the MySQL mysqladmin client

Recommend

Summary of the unknown usage of "!" in Linux

Preface In fact, the humble "!" has man...

CSS3 uses var() and calc() functions to achieve animation effects

Preview knowledge points. Animation Frames Backgr...

Table paging function implemented by Vue2.0+ElementUI+PageHelper

Preface I have been working on some front-end pro...

A complete explanation of MySQL high availability architecture: MHA architecture

Table of contents 1. Introduction 2. Composition ...

Install tomcat and deploy the website under Linux (recommended)

Install jdk: Oracle official download https://www...

Tutorial on installing mysql5.7.36 database in Linux environment

Download address: https://dev.mysql.com/downloads...

CentOS7 deployment Flask (Apache, mod_wsgi, Python36, venv)

1. Install Apache # yum install -y httpd httpd-de...

Optimizing query speed of MySQL with tens of millions of data using indexes

1. The role of index Generally speaking, an index...

Docker-compose quickly builds steps for Docker private warehouse

Create docker-compose.yml and fill in the followi...

Getting Started Guide to Converting Vue to React

Table of contents design Component Communication ...

Detailed explanation of the use of stat function and stat command in Linux

stat function and stat command Explanation of [in...

Use Docker Compose to quickly deploy ELK (tested and effective)

Table of contents 1. Overview 1.1 Definition 1.2 ...