子窗口关闭,父窗口刷新
1、这样写显然是父窗口重新加载一次,所以会出现我们常见的那种'重试'选项,所以不推荐
Response.Write("<script>window.opener.location.reload();window.close();</script>");
2.推荐第二种:
Response.Write("<script>window.opener.location.href=window.opener.location.href;alert('操作完成!');window.close();</script>");
3、子窗口传值给父窗口,然后关闭子窗口;
获取父窗口控件的ID,然后把子窗口的得到的值传给它,随后关闭,很崇拜子窗口的献身精神啦,哈哈!
代码
Response.Write("<script language='javascript'>window.parent.opener.document.getElementById('txtBlBm').value ='"+ txtYgbm +"';window.parent.opener.document.getElementById('txtBm').value ='"+ valueYgbm +"';window.parent.close();</script>");
4、获取父窗口的某个控件进行刷新
1 | Response.Write( "<script>window.opener.document.getElementById('btnSearch').click();alert('落实意见完成!');window.close();</script>" ); |
1 | 5、关闭当前页面,不提示试图关闭网页提示 |
1 2 | Response.write( "<script>window.opener = null; window.open('','_self'); window.close();</script>" ); IE7shang<br>Response.Write( "<script>window.parent.opener.document.getElementById('btnSearch').click();alert('操作完成!');window.open('','_self');window.close();</script>" ); |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步