附加后ckeditor即时加载

时间:2012-09-13 04:58:04

标签: php javascript jquery ckeditor

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

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

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

它适用于初始textarea。然后,我尝试在单击按钮后添加更多textarea与同一个类,但是,这次,我只能附加一个没有加载ckeditor的裸textarea。

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

1 个答案:

答案 0 :(得分:0)

在附加textarea后使用

CKEDITOR.replace(element);

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

See Official Documentation