码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript刷新页面n种方法

时间:2016-08-30 09:30:12      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

利用 window.location.href 属性

window.location.href=window.location.href;//刷新当前页面

asp.net 或 asp 利用此功能刷新页面

Response.Write("<script language=javascript>window.location.href=window.location.href;</script>")

认识 location / Location 对象 参考

location.href 扩展

1.1 刷新父页面

opener.location.href=opener.location.href; //
parent.frames(0).location.href=parent.frames(0).location.href; //

1.2 跳转到指定页面

window.location.href=‘yourpage.aspx‘;

location.reload()方法

window.location.reload(true);

window.navigate()方法

window.navigate("本页面url");

 

JavaScript刷新页面n种方法

标签:

原文地址:http://www.cnblogs.com/zhuji/p/5820534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!