在
之前的文章《一招教你使用css為HTML字體新增背景圖》中,為大家介紹如何使用css為HTML字體新增背景圖的方法。以下這篇文章跟大家介紹使用html5怎麼實現頁面跳躍的方法,有一定的參考價值,有需要的朋友可以參考一下,希望對你們有所助。
下面列了五個例子來詳細說明,這幾個例子的主要功能是:在5秒後,自動跳到同目錄下的hello.html(依自己需求自行修改)檔案。
1、html的實作
<head> <!-- 以下方式只是刷新不跳转到其他页面 --> <meta http-equiv="refresh" content="10"> <!-- 以下方式定时转到其他页面 --> <meta http-equiv="refresh" content="5;url=hello.html"> </head>
優點:簡單
缺點:Struts Tiles中無法使用
##2 、 javascript的實作
<script language="javascript" type="text/javascript"> // 以下方式直接跳转 window.location.href='hello.html'; // 以下方式定时跳转 setTimeout("javascript:location.href='hello.html'", 5000); </script>
缺點:受到不同瀏覽器的影響
3、結合了倒數的javascript實作(IE)
<span id="totalSecond">5</span> <script language="javascript" type="text/javascript"> var second = totalSecond.innerText; setInterval("redirect()", 1000); function redirect(){ totalSecond.innerText=--second; if(second<0) location.href='hello.html'; } </script>
缺點:firefox不支援(firefox不支援span、p等的innerText屬性)
# 4.結合了倒數的javascript實作(firefox)
<script language="javascript" type="text/javascript"> var second = document.getElementById('totalSecond').textContent; setInterval("redirect()", 1000); function redirect() { document.getElementById('totalSecond').textContent = --second; if (second < 0) location.href = 'hello.html'; } </script>
#5、解決Firefox不支援innerText的問題
<span id="totalSecond">5</span> <script language="javascript" type="text/javascript"> if(navigator.appName.indexOf("Explorer") > -1){ document.getElementById('totalSecond').innerText = "my text innerText"; } else{ document.getElementById('totalSecond').textContent = "my text textContent"; } </script>
#完整程式碼帶3和4
<span id="totalSecond">5</span> <script language="javascript" type="text/javascript"> var second = document.getElementById('totalSecond').textContent; if (navigator.appName.indexOf("Explorer") > -1) { second = document.getElementById('totalSecond').innerText; } else { second = document.getElementById('totalSecond').textContent; } setInterval("redirect()", 1000); function redirect() { if (second < 0) { location.href = 'hello.html'; } else { if (navigator.appName.indexOf("Explorer") > -1) { document.getElementById('totalSecond').innerText = second--; } else { document.getElementById('totalSecond').textContent = second--; } } } </script>
以上是html5篇:實現頁面跳躍的5種方式(程式碼分享)的詳細內容。更多資訊請關注PHP中文網其他相關文章!