JS弹窗提交关闭后,刷新父页面 在线等 急!!!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS弹窗提交关闭后,刷新父页面 在线等 急!!!相关的知识,希望对你有一定的参考价值。
注意! 是弹窗关闭以后再刷新父页面 我弹窗用的是window.open 如果用别的实现也行
弹窗需要在关闭是提交数据,在数据提交玩成后刷新父页面
父窗口方法:
function ReloadPage()
location.reload();
弹窗关闭时调用方法:
opener.ReloadPage();追问
我是提交数据的时候触发的js,这种的话在刷新父页面的时候数据还没提交上去呢
追答不知道你是用什么语言写的页面,但都是可以在提交完数据再调用这个JS方法的,以下为ASP的一个示例:if request("testparam")<>"" then
dim sql
sql="update tablename set a='"&request("testparm")&“‘ where id=2”
call ("opendb")
resut=conn.execute(sql)
call ("cloasedb")
if result=1 then
response.write ("<script>alert('数据保存成功!');opener.ReloadPage();self.close()</script>")
response.end
else
response.write ("<script>alert('数据保存失败!');self.close()</script>")
end if
end if追问
我是用Java的 我改用window.showModalDialog了 不过还是很感谢
参考技术A2.html
<html>
<body>
<input type="button" value="2" onclick="openwin()">
<script>
function openwin()
window.open("1.html");
window.location.reload();
</script>
</body>
</html>
html
<html>
<body>
111
</script>
</body>
</html>
追问我试过了 关闭弹窗后父页面没反应
子页面提交后刷新父页面问题
在弹出的子页面在做新增和修改操作时, 有时要对父页面进行刷新操作, 可以关闭子页面后刷新父页面, 也可以不关闭子页面刷新父页面,在网上查到了方法, 在这里记一下,方便以后的学习查找.
一. 弹出子页面关闭刷新父页面:
在父页面js中回调window.opener.location.reload();
<script language=JavaScript>
window.opener.location.reload();
</script>
二. 不关闭子页面刷新父页面:
在子页面js提交时执行:
<script language=JavaScript>
self.opener.location.reload();
</script>
先在这里记一下, 可能理解有错误, 以后有新发现的错误再做修改.
以上是关于JS弹窗提交关闭后,刷新父页面 在线等 急!!!的主要内容,如果未能解决你的问题,请参考以下文章