」語句跳轉;2、使用「window.location.href='頁面位址';”語句跳轉。"/> 」語句跳轉;2、使用「window.location.href='頁面位址';”語句跳轉。">
html自動跳到頁面的方法:1、使用「」語句跳轉;2、使用「 window.location.href='頁面位址';”語句跳轉。
本教學操作環境:windows7系統、HTML5&&javascript1.8.5版、Dell G3電腦。
1、html中使用meta中跳轉,透過meta可以設定跳轉時間和頁面
<head> <!--只是刷新不跳转到其他页面 --> <meta http-equiv="refresh" content="5"> <!--定时转到其他页面 --> <meta http-equiv="refresh" content="5;url=index.html"> </head>
2、透過javascript中實現跳轉
// 直接跳转 window.location.href='index.html'; // 定时跳转 setTimeout("javascript:location.href='index.html'", 5000);
更多程式相關知識,請造訪:程式設計影片! !
以上是html怎麼自動跳頁的詳細內容。更多資訊請關注PHP中文網其他相關文章!