How to clear the content of an IFRAME?

前端 未结 10 2453
感情败类
感情败类 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:03

    Or you can do this :

    var iframe_element = window.frames['iframe_name'];
    iframe_element.document.open();
    iframe_element.document.close();
    

提交回复
热议问题