JS页面跳转和刷新的几种方式

1、跳转常用方法:

window.location.href="index.php";  
window.history.back(-1);//类似于按钮,参数是负几,就后退几次。  
window.navigate("index.jsp"); //navigate对象包含有关浏览器的信息,也可以作为页面跳转,后面直接加要跳转的地方。  self.location.href=index.htm;  
//self指代当前窗口对象,属于window最上层的对象;  
//location.href 指的是某window对象的URL地址.  
//self.location.href指当前窗口的URL地址,去掉self默认为当前窗口的URL地址.  top.location=index.php;  
//top 属性返回最顶层的先辈窗口。  
//该属性返回队一个顶级窗口的只读引用。  
//如果窗口本身就是一个顶级窗口,top 属性存放对窗口自身的引用。  
//如果窗口是一个框架,那么 top 属性引用包含框架的顶层窗口。
[javascript] view plain copy print?
location.replace(document.referrer);  
document.referrer   
history.go(-1);//不刷新页面  
[javascript] view plain copy print?
history.back();//不刷新页面  

2、Javascript刷新页面的常用方法:

[javascript] view plain copy print?
1    history.go(0)   
2    location.reload()   
3    location=location   
4    location.assign(location)   
5    document.execCommand('Refresh')   
6    window.navigate(location)   
7    location.replace(location)   
8    document.URL=location.href 

3、自动刷新的方法

自动刷新页面的方法:
1.页面自动刷新:把如下代码加入<head>区域中
<meta http-equiv="refresh" content="20">
其中20指每隔20秒刷新一次页面.
2.页面自动跳转:把如下代码加入<head>区域中
<meta http-equiv="refresh" content="20;url=http://www.baidu.com">
其中20指隔20秒后跳转到http://www.baidu.com页面
3.页面自动刷新js版
[javascript] view plain copy print?
<script language="JavaScript">  
setTimeout('window.location.reload()',1000) //指定1秒刷新一次  
script>  JS刷新框架的脚本语句//如何刷新包含该框架的页面用   
[javascript] view plain copy print?
<script language=JavaScript>  parent.location.reload();  
script>    //子窗口刷新父窗口
[javascript] view plain copy print?
<script language=JavaScript>  self.opener.location.reload();  
script>  
( 或 <a href="javascript:opener.location.reload()">刷新a>   )  //如何刷新另一个框架的页面用   
[javascript] view plain copy print?
<script language=JavaScript>  parent.另一FrameID.location.reload();  
script>  如果想关闭窗口时刷新或者想开窗时刷新的话,在<body>中调用以下语句即可。

4、jquery方法

$(location).attr('href', 'http://www.jb51.net');$(window).attr('location','http://www.jb51.net');$(location).prop('href', 'http://www.jb51.net')


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部