明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

HTML完成頁(yè)面自動(dòng)跳轉(zhuǎn)的5種方法

[摘要]這篇文章主要介紹了關(guān)于HTML實(shí)現(xiàn)頁(yè)面自動(dòng)跳轉(zhuǎn)的五種方法,有著一定的參考價(jià)值,現(xiàn)在分享給大家,有需要的朋友可以參考一下在上篇文章給大家介紹了HTML頁(yè)面3秒后自動(dòng)跳轉(zhuǎn)的三種常見(jiàn)方法,本文繼續(xù)給大家介紹有關(guān)html頁(yè)面跳轉(zhuǎn)相關(guān)知識(shí),一起學(xué)習(xí)吧。下面列了五個(gè)例子來(lái)詳細(xì)說(shuō)明,這幾個(gè)例子的主要功能是:在5...
這篇文章主要介紹了關(guān)于HTML實(shí)現(xiàn)頁(yè)面自動(dòng)跳轉(zhuǎn)的五種方法,有著一定的參考價(jià)值,現(xiàn)在分享給大家,有需要的朋友可以參考一下

在上篇文章給大家介紹了HTML頁(yè)面3秒后自動(dòng)跳轉(zhuǎn)的三種常見(jiàn)方法,本文繼續(xù)給大家介紹有關(guān)html頁(yè)面跳轉(zhuǎn)相關(guān)知識(shí),一起學(xué)習(xí)吧。
下面列了五個(gè)例子來(lái)詳細(xì)說(shuō)明,這幾個(gè)例子的主要功能是:在5秒后,自動(dòng)跳轉(zhuǎn)到同目錄下的hello.html(根據(jù)自己需要自行修改)文件。

1)html的實(shí)現(xiàn)

復(fù)制代碼

代碼如下:

<head>  
<meta http-equiv="refresh" content="5;url=hello.html">  
</head>

優(yōu)點(diǎn):簡(jiǎn)單

缺點(diǎn):Struts Tiles中無(wú)法使用

2)javascript的實(shí)現(xiàn)

復(fù)制代碼

代碼如下:

<mce:script language="javascript" type="text/javascript"><!--  
setTimeout("javascript:location.href='http://liting6680.blog.163.com/blog/hello.html'", 5000);  
// --></mce:script>

優(yōu)點(diǎn):靈活,可以結(jié)合更多的其他功能

缺點(diǎn):受到不同瀏覽器的影響

3)結(jié)合了倒數(shù)的javascript實(shí)現(xiàn)(IE)

復(fù)制代碼

代碼如下:

<span id="totalSecond">5</span>  
<mce:script language="javascript" type="text/javascript"><!--  
var second = totalSecond.innerText;  
setInterval("redirect()", 1000);  
function redirect(){  
totalSecond.innerText=--second;  
if(second<0) location.href='http://liting6680.blog.163.com/blog/hello.html';  
}  
// --></mce:script>

優(yōu)點(diǎn):更人性化

缺點(diǎn):firefox不支持(firefox不支持span、p等的innerText屬性)

3 )結(jié)合了倒數(shù)的javascript實(shí)現(xiàn)(firefox)

復(fù)制代碼

代碼如下:

<mce: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='http://liting6680.blog.163.com/blog/hello.html';  
}  
// --></mce:script>

4)解決Firefox不支持innerText的問(wèn)題

復(fù)制代碼

代碼如下:

<span id="totalSecond">5</span>  
<mce: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";  
}  
// --></mce:script>

5)整合3)和3')

復(fù)制代碼

代碼如下:

<span id="totalSecond">5</span>  
<mce: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='http://liting6680.blog.163.com/blog/hello.html';  
} else  
{  
if (navigator.appName.indexOf("Explorer") > -1)  
{  
document.getElementById('totalSecond').innerText = second--;  
} else  
{  
document.getElementById('totalSecond').textContent = second--;  
}  
}  
}  
// --></mce:script>

以上通過(guò)五個(gè)實(shí)例是給大家介紹了HTML實(shí)現(xiàn)頁(yè)面自動(dòng)跳轉(zhuǎn)的五種方法,希望大家喜歡。

以上就是HTML實(shí)現(xiàn)頁(yè)面自動(dòng)跳轉(zhuǎn)的五種方法的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!


網(wǎng)站建設(shè)是一個(gè)廣義的術(shù)語(yǔ),涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。