iframe无法关闭窗口

有时候用chrom浏览器无法关闭iframe弹出层,window.close()等失效
建议以下方式:

<input type="button" class="normal_btn" value=" 取消  " onclick="closeWin();"/>
<script type="text/javascript">
        function closeWin() {
            var index = parent.layer.getFrameIndex(window.name);//获取子页面索引
            parent.layer.close(index);//删除弹出层
        }
    </script>

例如下图:
在这里插入图片描述
点击取消可关闭窗口。

猜你喜欢

转载自blog.csdn.net/weixin_43396067/article/details/84328112