如何使用javascript或jQuery在iframe中关闭iframe?我尝试过<a href="javascript:self.close()">,但它不起作用。
发布于 2015-02-23 17:58:08
使用此选项可从iframe本身的父级中删除iframe
frameElement.parentNode.removeChild(frameElement)仅适用于同一来源(不允许跨来源)
https://stackoverflow.com/questions/6754935
复制相似问题