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

热点内容
西门子编程提示什么 浏览:746
结算书需要导出哪些文件 浏览:819
机械三次元编程是什么 浏览:654
永春拳app 浏览:410
ug编程在哪个界面里面 浏览:552
手机无线网密码 浏览:892
java小动画 浏览:879
怎么去掉图片的程序名称 浏览:464
双重分卷压缩文件怎么解压 浏览:650
平板里哪些文件夹可以删除 浏览:730
excel制作的文件显示灰色 浏览:828
手机存储数据种类有哪些 浏览:447
matlab神经网络应用设计源代码 浏览:444
压缩文件怎么发送给微信朋友 浏览:101
中文密码怎么解压 浏览:911
h格式的文件 浏览:744
vary安装教程 浏览:156
复制文件夹里面所有文件名 浏览:836
java怎么给字符串排序 浏览:405
java数组类 浏览:533

友情链接