"."/> ".">
Home > Article > Web Front-end > What is the automatic jump attribute of html web pages?
htmlThe automatic jump attribute of the web page is the http-equiv attribute of the meta tag; the http-equiv attribute needs to be used in conjunction with the content attribute. The syntax "".
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.
The automatic jump attribute of the html web page is the http-equiv attribute of the meta tag.
The http-equiv attribute is used to associate the content attribute to the HTTP header; therefore, the http-equiv attribute needs to be used in conjunction with the content attribute.
Jump syntax:
<meta http-equiv='refresh' content='跳转时间间隔; url=页面地址'>
http-equiv='refresh'
: The document is automatically refreshed.
content='Jump time interval; url=page address'
: Define the jump time interval and jump address for automatic document refresh.
Example:
<meta http-equiv='refresh' content='3; url=http://www.php.cn'>
means that the page will jump to http://www.php.cn after 3 seconds ( PHP Chinese website)
Recommended tutorial: "html video tutorial"
The above is the detailed content of What is the automatic jump attribute of html web pages?. For more information, please follow other related articles on the PHP Chinese website!