系統(tǒng)軟件園 - 專注分享最好的電腦系統(tǒng)軟件!免費(fèi)安全下載 系統(tǒng)軟件園首頁(yè) | Win7激活工具 | 熱門專題
系統(tǒng)軟件園>您的位置:首頁(yè) > > 系統(tǒng)教程 > 軟件教程 >

網(wǎng)頁(yè)自動(dòng)跳轉(zhuǎn)代碼|HTML自動(dòng)跳轉(zhuǎn)代碼

更新時(shí)間:2018-07-21 13:22:43| 編輯:本站整理 | 信息來(lái)源:本站整理|瀏覽數(shù):

有時(shí)我們要對(duì)網(wǎng)頁(yè)做跳轉(zhuǎn),讓用戶打開該頁(yè)面后馬上或是在一定的時(shí)間內(nèi)跳轉(zhuǎn)到另外一個(gè)頁(yè)面,下面小編分享網(wǎng)頁(yè)自動(dòng)跳轉(zhuǎn)代碼給大家。




動(dòng)跳轉(zhuǎn)代碼方案一,用<meta>里直接寫刷新語(yǔ)句:

如下語(yǔ)句,紅色甩部分改成自己的網(wǎng)頁(yè)地址就好了。藍(lán)色部分為跳轉(zhuǎn)時(shí)間 下面是5秒,可以改成自己需要的時(shí)間,0表示不等待。

<html>
< head>
< meta http-equiv="Content-Language" content="zh-CN">
< meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
< meta http-equiv="refresh" content="5;url=http://m.ametit.com">
< title>html網(wǎng)頁(yè)自動(dòng)跳轉(zhuǎn)代碼--西農(nóng)大網(wǎng)站</title>
< /head>
< body>

測(cè)試:html網(wǎng)頁(yè)自動(dòng)跳轉(zhuǎn)代碼<br/>

這里可以寫一些文字,在跳轉(zhuǎn)之前可以顯示給用戶!<br />

</body>
< /html>  

自動(dòng)動(dòng)跳轉(zhuǎn)代碼方案二,用JavaScript腳本來(lái)跳轉(zhuǎn)

 

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

 
 
 
 
 
 
<script language="javascript" type="text/javascript">
// 以下方式直接跳轉(zhuǎn)
window.location.href='hello.html';
// 以下方式定時(shí)跳轉(zhuǎn)
setTimeout("javascript:location.href='http://m.ametit.com'", 5000);
</script>

優(yōu)點(diǎn):靈活,可以結(jié)合更多的其他功能
缺點(diǎn):受到不同瀏覽器的影響
3) 結(jié)合了倒數(shù)的javascript實(shí)現(xiàn)(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='http://m.ametit.com';
}
</script>

優(yōu)點(diǎn):更人性化
缺點(diǎn):firefox不支持(firefox不支持span、div等的innerText屬性)
3') 結(jié)合了倒數(shù)的javascript實(shí)現(xiàn)(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 = 'http://m.ametit.com';
}
</script>

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

 

 
 
 
 
 
 
 
 
 
<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>

5) 整合3)和3')

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

返回頂部


系統(tǒng)軟件園發(fā)布的系統(tǒng)鏡像及軟件均來(lái)至互聯(lián)網(wǎng),僅供學(xué)習(xí)和研究使用,不得用于任何商業(yè)用途并請(qǐng)?jiān)谙螺d后24小時(shí)內(nèi)刪除,如果滿意請(qǐng)聯(lián)系版權(quán)方購(gòu)買。
如果您發(fā)現(xiàn)本站侵害了您的版權(quán),請(qǐng)立即聯(lián)系我們,本站將第一時(shí)間進(jìn)行相關(guān)處理。聯(lián)系方式(見(jiàn)首頁(yè))
版權(quán)聲明|下載聲明 Copyright @ 2016 系統(tǒng)軟件園