导航:首页 > 编程语言 > 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跳转代码相关的资料

热点内容
2017程序员工资统计 浏览:153
ps2021暂存盘文件手动清理 浏览:459
fdt表中的长文件名 浏览:508
mysql管理员默认密码 浏览:359
越狱ios8直接删系统文件 浏览:490
文件柜的倾斜度是多少 浏览:115
苹果耳机切换不了 浏览:968
有什么小说网站可以看所有小说 浏览:661
苹果云盘文件怎么存在 浏览:466
红米手机里面的txt文件 浏览:360
华为pad摄像头在哪个文件夹 浏览:147
手机版编程猫如何复制角色 浏览:599
动漫图片的文件格式 浏览:560
黑衣紧身美女跳小苹果 浏览:670
无法收缩数据库 浏览:216
java中获取二维数组的长度 浏览:510
手机里面的数据线怎么接 浏览:491
微信转帐是红包吗 浏览:748
如何学会函数编程 浏览:985
js赋值高度 浏览:940

友情链接