How to clear the content of an IFRAME?

前端 未结 10 2449
感情败类
感情败类 2020-12-14 05:17

How do I clear the content of my IFRAME element, using javascript, without loading a blank page into it?

I can figure out to do this: iframe_element.src = \"bl

10条回答
  •  死守一世寂寞
    2020-12-14 06:02

    var iframe = document.getElementById("myiframe");
    var html = "";
    
    iframe.contentWindow.document.open();
    iframe.contentWindow.document.write(html);
    iframe.contentWindow.document.close();
    

    tested in IE, Firefox and Chrome ... it did it :)

提交回复
热议问题