How to set HTML content into an iframe

前端 未结 6 1760
醉酒成梦
醉酒成梦 2020-11-28 07:16

I have a HTML string


  Hello world
 

and I wan

6条回答
  •  隐瞒了意图╮
    2020-11-28 08:10

    I have a problem with 'origin' with the answers here. This is how it's work for me:

    const frame1 = document.createElement('iframe');
    frame1.name = 'frame1';
    //not have to set this style,just for demo
    frame1.style.position = 'absolute';
    frame1.style.height = '800px';
    frame1.style.top = '100px';
    frame1.style.left = '100px';
    frame1.style.background = 'white';
    
    document.body.appendChild(frame1);
    const frameDoc =
      frame1.contentWindow || frame1.contentDocument.document || 
      frame1.contentDocument;
    
    frameDoc.document.write('Hello world');
    frameDoc.document.close();
    

提交回复
热议问题