javascript之在iframe中关闭parent窗口

来源:互联网 发布:俄亥俄州知乎 编辑:程序博客网 时间:2024/04/29 07:19

   在iframe中加载的页面中使用window.close();将无法关闭对应的parent窗口,必须使用top.close()才能将iframe对应的parent窗口关闭,另必须使用window.open的方式打开窗口,如果不使用window.open打开窗口,即使用在top.close();之前加上top.opener = null,浏览器也会弹出"是否要关闭窗口" 的提示;