0

我正在使用这种方式使用类方法在我的php页面中加载ckeditor:-

<script type="text/javascript" src="../ckeditor.js"></script>

<textarea class="ckeditor" name="editor0_en"><?=$name;?>hellohello</textarea>

它适用于初始文本区域。然后,我尝试在单击按钮后附加更多具有相同类的 textarea,但是,这一次,我只能在没有加载 ckeditor 的情况下附加一个裸 textarea。

无论如何我可以在附加后加载ckeditor外观吗?谢谢!

4

1 回答 1

0

附加 textarea 后使用

CKEDITOR.replace(element);

它用 CKEditor 实例替换 textarea 或 DOM 元素 (DIV)。

见官方文档

于 2012-09-13T05:04:18.517 回答