如何在IE中的iFrame中插入HTML?在chrome和firefox中我使用了execCommand insertHtml,但在IE中不支持它。
我想出了如何使用pasteHTML将html粘贴到内容可编辑div中,但我无法弄清楚如何插入到iFrame中。
框架位于充当文本区域的页面内,因此设计模式已打开。
iframe id="editor" name="editor" class="theframe" onkeydown="enter(this,event)" onpaste="return handlepaste(this, event)"></iframe>
答案 0 :(得分:0)
这将有效:
$("iframe").contents().find("body").html('my_new_content');