代碼如下:
成都創(chuàng)新互聯(lián)服務項目包括合浦網(wǎng)站建設、合浦網(wǎng)站制作、合浦網(wǎng)頁制作以及合浦網(wǎng)絡營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關系等,向廣大中小型企業(yè)、政府機構等提供互聯(lián)網(wǎng)行業(yè)的解決方案,合浦網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟效益。目前,我們服務的客戶以成都為中心已經(jīng)輻射到合浦省份的部分城市,未來相信會繼續(xù)擴大服務區(qū)域并繼續(xù)獲得客戶的支持與信任!
html
head
title?page?A?/title
script?type="text/javascript"
function?delyLoad(){
setTimeout(function(){
?window.location.href='b.html';
},5000)
}
/script
/head
body?onload="delyLoad()"
h1A/h1
/body
/html
首先做一個計時器,記時5秒。5秒后將location的鏈接轉為b.html。如果b.html與a不在同一個頁面下,最好寫絕對路徑
js實現(xiàn)頁面的跳轉具體有幾種方法,下面列出幾種,供你參考:
1、 window.location.href方式
script language="javascript" type="text/javascript"window.location.href="target.aspx"; /script
2、 window.navigate方式跳轉
script language="javascript" window.navigate("target.aspx");/script
3、window.loction.replace方式實現(xiàn)頁面跳轉,注意跟第一種方式的區(qū)別
script language="javascript"window.location.replace("target.aspx");/script
有3個jsp頁面(1.aspx, 2.aspx, 3.aspx),進系統(tǒng)默認的是1.aspx,當我進入2.aspx的時候, 2.aspx里面用window.location.replace("3.aspx");
與用window.location.href ("3.aspx");
從用戶界面來看是沒有什么區(qū)別的,但是當3.aspx頁面有一個"返回"按鈕,調用window.history.go(-1); wondow.history.back();方法的時候,一點這個返回按鈕就要返回2.aspx頁面的話,區(qū)別就出來了,當用 window.location.replace("3.aspx");連到3.aspx頁面的話,3.aspx頁面中的調用 window.history.go(-1);wondow.history.back();方法是不好用的,會返回到1.aspx。
4、self.location方式實現(xiàn)頁面跳轉,和下面的top.location有小小區(qū)別
script language="JavaScript" self.location='target.aspx';/script
5、top.location
script language="javascript"
top.location='target.aspx';
/script
謝謝!
1.設置url
// 設置當前urlvar list_url = '/document/order/default.php?page=' + page_nums + ''+ $("#form1").serialize();var e_list_url = encodeURIComponent(list_url);$("#list_url").val(e_list_url);
2.傳遞url
var list_url = $('#list_url').val();
window.location.href='/document/order/view.php?order_id='+order_id+'action=edithandler=adminlist_url='+list_url;
3.解析url并跳轉
var list_url = '?php echo $list_url;?';
d_list_url = decodeURIComponent(list_url);window.location.href = d_list_url;
這樣就能實現(xiàn),參數(shù)不丟失了。主要就是頁碼和篩選條件。
純js頁面跳轉要傳復雜數(shù)據(jù)不好做,要用localStorage,這個東東在各瀏覽器中是不一樣的。
比較好的方法就是,在跳轉鏈接中加上一些標志參數(shù),如對象ID之類,直接由服務器生成新頁面內容或者轉到新頁面后由頁面從服務器重新ajax取數(shù)據(jù)。
javascript中的location.href有很多種用法,主要如下:
self.location.href="/url" 當前頁面打開URL頁面
location.href="/url" 當前頁面打開URL頁面
windows.location.href="/url" 當前頁面打開URL頁面,前面三個用法相同
this.location.href="/url" 當前頁面打開URL頁面
parent.location.href="/url" 在父頁面打開新頁面
top.location.href="/url" 在頂層頁面打開新頁面
一般使用 onclick="window.location.href=跳轉地址" 或者 onclick=window.open("跳轉地址"); 后者可能被瀏覽器阻擋彈出網(wǎng)頁,前者較好。
location.href的兩種寫法:
button onclick="window.location.href=''"Location方式1/button
input type=button value="Location方式2" onclick="window.location.href=''"
open的兩種寫法:
button onclick="window.open('')"Open方式1/button
input type=button value="Open方式2" onclick="window.open('')"