阅读:4590回复:1
js页面跳转常用的几种方式
第一种:1、跳转链接 在当前窗口打开
window.location.href="jb51.jsp?backurl="+window.location.href; 或 top.location.href="jb51.jsp?backurl="+window.location.href; 等价于 <a href="baidu.com" target="_self">go baidu</a> 2、跳转链接 在新窗口打开 window.open("http://www.baidu.com") 等价于 <a href="baidu.com" target="_blank">go baidu</a> 3、第二种:跳转链接 self.location='jb51.htm'; 4、第三种: location.href="http://www.a.com"; top.location='jb51.jsp'; 5、第4种: window.navigate("jb51.jsp"); 6、跳转链接 返回上一页 alert("返回"); window.history.back(-1); |
|
沙发#
发布于:2022-07-26 11:07
在新窗口中打开
<input type="button" value="新窗口打开" onclick="window.open('http://www.google.com')"> 在当前页打开 <input type="button" value="当前页打开" onclick="window.location='http://www.google.com/'"> |
|