主頁 > 知識(shí)庫 > HTML實(shí)現(xiàn)頁面自動(dòng)跳轉(zhuǎn)的五種方法

HTML實(shí)現(xiàn)頁面自動(dòng)跳轉(zhuǎn)的五種方法

熱門標(biāo)簽:400電話是在哪里申請 400電話辦理尚景 地圖標(biāo)注地點(diǎn)下載 商丘電話自動(dòng)外呼系統(tǒng)怎么收費(fèi) 昌邑外呼系統(tǒng) 周口導(dǎo)航地圖標(biāo)注 東莞人工外呼系統(tǒng)多少錢 默納克系統(tǒng)外呼顯示inns 朝陽自動(dòng)外呼系統(tǒng)

在上篇文章給大家介紹了HTML頁面3秒后自動(dòng)跳轉(zhuǎn)的三種常見方法,本文繼續(xù)給大家介紹有關(guān)html頁面跳轉(zhuǎn)相關(guān)知識(shí),一起學(xué)習(xí)吧。
下面列了五個(gè)例子來詳細(xì)說明,這幾個(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):簡單

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

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


復(fù)制代碼
代碼如下:

<mce:script language="javascript" type="text/javascript"><!--
setTimeout("javascript:location., 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.;
}
// --></mce:script>

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

缺點(diǎn):firefox不支持(firefox不支持span、div等的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.;
}
// --></mce:script>

4)解決Firefox不支持innerText的問題


復(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.;
} else
{
if (navigator.appName.indexOf("Explorer") > -1)
{
document.getElementById('totalSecond').innerText = second--;
} else
{
document.getElementById('totalSecond').textContent = second--;
}
}
}
// --></mce:script>

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

標(biāo)簽:沈陽 那曲 阿拉善盟 揭陽 健身房 湖南 福建 銅陵

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《HTML實(shí)現(xiàn)頁面自動(dòng)跳轉(zhuǎn)的五種方法》,本文關(guān)鍵詞  HTML,實(shí)現(xiàn),頁面,自動(dòng),跳轉(zhuǎn),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《HTML實(shí)現(xiàn)頁面自動(dòng)跳轉(zhuǎn)的五種方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于HTML實(shí)現(xiàn)頁面自動(dòng)跳轉(zhuǎn)的五種方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章