Insert HTML into iframe

前端 未结 4 1502
终归单人心
终归单人心 2020-12-29 05:05

I am creating a in browser HTML editor. I am using the syntax highlighter called Code Mirror which is very good.

My setup is an iframe that holds a view of the page

4条回答
  •  悲哀的现实
    2020-12-29 05:37

    You can do it all on one line with jquery

    $("iframe").contents().find('html').html("Your new HTML");
    

    See working demo here http://jsfiddle.net/dWpvf/972/

    Replace "iframe" with "#render" for your example. I left in "iframe" so that other users can reference the answer.

提交回复
热议问题