关于弹出层(iframe)时刷新页面的js

来源:互联网 发布:淘宝店铺最多几个客服 编辑:程序博客网 时间:2024/05/22 02:11
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>");

原创粉丝点击