How to set HTML content into an iframe

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

I have a HTML string


  Hello world
 

and I wan

6条回答
  •  醉梦人生
    2020-11-28 08:12

    var htmlString="Hello world";
    var myIFrame = document.getElementById('iframe1');
    myIFrame.src="javascript:'"+htmlString+"'";
    

    With html5 you'll be able to use the srcdoc attribute.

提交回复
热议问题