How to set HTML content into an iframe

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

I have a HTML string


  Hello world
 

and I wan

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

    How about document.documentElement.innerHTML. But do know that everything in the page will be replaced even the script that does that.

    For an iframe it would be like this myIFrame.contentWindow.document.documentElement.innerHTML

提交回复
热议问题