" statement to jump; 2. Use the "window.location.href=' page Address ';' statement jumps."/> " statement to jump; 2. Use the "window.location.href=' page Address ';' statement jumps.">

Home  >  Article  >  Web Front-end  >  How to automatically jump to the page in html

How to automatically jump to the page in html

青灯夜游
青灯夜游Original
2021-05-06 11:35:344986browse

html Method to automatically jump to the page: 1. Use the "" statement to jump; 2. Use " window.location.href='page address';" statement jumps.

How to automatically jump to the page in html

The operating environment of this tutorial: windows7 system, HTML5&&javascript version 1.8.5, Dell G3 computer.

1. Use meta to jump in html. You can set the jump time and page through meta.

<head>
<!--只是刷新不跳转到其他页面 -->
<meta http-equiv="refresh" content="5">
<!--定时转到其他页面 -->
<meta http-equiv="refresh" content="5;url=index.html"> 
</head>

2. Jump through javascript

// 直接跳转
window.location.href='index.html';
// 定时跳转
setTimeout("javascript:location.href='index.html'", 5000);

For more programming-related knowledge, please visit: Programming Video! !

The above is the detailed content of How to automatically jump to the page in html. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn