" 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
html Method to automatically jump to the page: 1. Use the "" statement to jump; 2. Use " window.location.href='page address';" statement jumps.
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='//m.sbmmt.com/m/faq/index.html'; // 定时跳转 setTimeout("javascript:location.href='//m.sbmmt.com/m/faq/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!