js延時自動跳轉到指定頁面的跳轉代碼

來源:互聯網
上載者:User
關鍵字 網頁製作 Ajax JavaScript

js延時自動跳轉到指定頁面的跳轉代碼
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "HTTP://www.w3.org/tr/xhtml1/dtd/ xhtml1-transitional.dtd">
<html xmlns="HTTP://jzread.com/1999/xhtml">
<head>
<meta HTTP-equiv="content-type" content="text/html; charset=gb2312" />
<title>js延時自動跳轉到指定頁面的跳轉代碼</title>

<script language=javascript教程>
function gou(secs,surl){
if(--secs>0){
settimeout("gou("+secs+",'"+surl+"')",1000);
}
else{

location.href=surl;
}
}
gou(5,'HTTP://www.jzread.com');
</script> 方法二

5是指停留5秒鐘後自動刷新到url網址

<meta HTTP-equiv="refresh" content="5; url=HTTP://www.jzread.com">
方法三

<script type="text/javascript教程">
<!--
function go(t,url){
t設置跳轉時間:秒
url設置跳轉網址

document.write("<div id=text>本頁將在<strong id=tt></strong>後,跳轉至:<span id=link></span ></div>");   
document.getelementbyid("link").innerhtml="<a href="+url+">"+url +"</a>";   
$(t,url);   
}   
  
function $(t,url){   
ta = t-1;   
tb = t+"000";   
d = docume nt.getelementbyid("tt");   
d.innerhtml=t;   
  
window.setinterval(function()   
    {   
         go_to(url);   
    },1000);   
}    
 

function go_to(url){
d.innerhtml=ta--;
if(ta<0){
document.write("正在跳轉至:<a href="+url+">"+url+"</a>");
location.href=url;
}
else{
return;
}
}
-->
</script>

<script type="text/javascript">
go(5,"HTTP://www.jzread.com")
</script>
方法三

<script language="javascript">
location.replace("HTTP://www.jzread.com/")
</script>
</head>

<body>
</body>
</html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.