您现在的位置是:首页 > 电脑技术查询 > web开发

怎么关闭iframe

编辑:chaxungu时间:2022-10-02 23:21:49分类:web开发

如何关闭iframe
如何在不移除iframe的情况下将iframe的页面卸载

------解决方案--------------------
<iframe border=0 width=0 height=0 > </iframe>
<script>
document.all.iframe.src= " ";
document.all.iframe.border = 0;
document.all.iframe.width=0;
document.all.iframe.height=0
</script>
------解决方案--------------------
document.body.removeChild(document.getElementById( "iframe_id "))