当前位置: 代码迷 >> ASP.NET >> window.close怎么关闭不提示?IE8上
  详细解决方案

window.close怎么关闭不提示?IE8上

热度:4270   发布时间:2013-02-25 00:00:00.0
window.close如何关闭不提示?IE8下
我是想弹出一个全屏窗口后关闭父窗口不提示,网上找了N个没有用,给我个完整有用的代码谢谢!response.write("<script>???</script>");

------解决方案--------------------------------------------------------
HTML code
<html><head><script type="text/javascript">    function a() {        window.open('', '_parent', '');        window.close();      }</script></head><body><input  type="button" value="弹出新窗口" onclick="a()"/><a href="time" target="_parent">超级链接在父窗口中打开新页面</a></body></html>
------解决方案--------------------------------------------------------
用模态框
参考
------解决方案--------------------------------------------------------
好像是IE8提高了安全。必须有提示。。,,,,也许我记错了。。
------解决方案--------------------------------------------------------
通过父窗口打开的就行吧,如果是单独的窗口好像是还是会提示
  相关解决方案