首页 > Web开发 > 详细

刷新页面Js

时间:2015-10-23 11:53:42      阅读:204      评论:0      收藏:0      [点我收藏+]

简单回答:自己看,不再赘述 用iframe、弹出子页面刷新父页面
iframe parent.location.reload();
弹出子页面 window.opener.location.reload();
子窗口刷新父窗口
self.window.opener.locaction.reload();
刷新一open()方法打开的窗口
window.opener.location.href = window.opener.location.href
刷新以winodw.showModelDialog()方法打开的窗口
window.parent.dialogArguments.document.execCommand(‘Refresh‘);

Response.Write("<script>window.location.href = window.location.href</script>");
刷新本页Response.Write("<script>window.location.href=window.location.href; </script>");
刷新父页和本页面:
Response.Write("<script>alert(‘提交成功!‘);window.location.href=window.location.href;window.opener.location=window.opener.location;</script>");

刷新页面Js

原文:http://www.cnblogs.com/loge/p/4903871.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!