2

我正在尝试将完整的 html 页面添加到 ckeditor 中,以便通过 js 进行一些编辑。

具体来说,我执行命令

oEditor.insertHtml("<html><head><title>Hello</title></head><body><div>hello</div></body></html>");

但我得到的结果如下:

<p>
    <html>
        <head>
            <title></title>
        </head>
        <body>
        </body>
    </html>
</p>
<p>
    <title></title>
</p>
<div>
    hello</div>

我使用的模式是:

config.fullPage = true

我也尝试了 fullPage = false,但没有成功。

有没有办法将完整的html页面插入ckeditor?

非常感谢提前!!

4

1 回答 1

5

insert* 方法将数据附加到编辑器内容中,但如果要替换整个内容,则必须使用setData

于 2012-06-15T12:32:52.840 回答