導航:首頁 > 編程語言 > url跳轉代碼

url跳轉代碼

發布時間:2023-10-12 20:12:20

A. URL跳轉的幾種方式

1、:

<head><!--以下方式只是刷新不跳轉到其他頁面--><metahttp-equiv="refresh"content="10"><!--以下方式定時轉到其他頁面--><metahttp-equiv="refresh"content="5;url=hello.html"></head>

2、javascript:

①、window.location.href方式

js"><scriptlanguage="javascript"type="text/javascript">//以下方式直接跳轉window.location.href='hello.html';
//以下方式定時跳轉setTimeout("javascript:location.href='hello.html'",5000);
</script>

②、window.navigate方式跳轉

<scriptlanguage="javascript">
window.navigate("target.aspx");</script>

③、window.loction.replace方式

<scriptlanguage="javascript">
window.location.replace("target.aspx");</script>

④、self.location方式

<scriptlanguage="JavaScript">
self.location='target.aspx';</script>

⑤、top.location方式

<scriptlanguage="javascript">
top.location='target.aspx';</script>

⑥、返回方式

<scriptlanguage="javascript">
alert("返回");
window.history.back(-1);</script>
閱讀全文

與url跳轉代碼相關的資料

熱點內容
androidmk拷貝文件 瀏覽:107
個人熱點中的無線區域網密碼 瀏覽:570
電視上用什麼app看電視不要會員 瀏覽:152
java簡單數字驗證碼 瀏覽:404
哪個app能看哈雷與戴維森 瀏覽:758
Linux的文件上傳到hdfs 瀏覽:544
系統升級win10需要再重裝么 瀏覽:205
u盤文件防止刪除 瀏覽:671
jsp字體粗體 瀏覽:775
sw安裝程序顯示找不到文件 瀏覽:714
手機傳文件到電腦的視頻在哪裡 瀏覽:245
商會網站搭建多少費用 瀏覽:159
zbrush4r7視頻教程 瀏覽:473
java前景2016 瀏覽:692
c代碼設置窗體屬性 瀏覽:179
excelvba自動保存文件 瀏覽:926
計算機java語言答案 瀏覽:184
如何找出手機應用的數據 瀏覽:62
企業門戶網站php 瀏覽:945
vray書房照片級教程 瀏覽:530

友情鏈接