我使用这种方式使用类方法在我的php页面中加载ckeditor: -
<script type="text/javascript" src="../ckeditor.js"></script>
<textarea class="ckeditor" name="editor0_en"><?=$name;?>hellohello</textarea>
它适用于初始textarea。然后,我尝试在单击按钮后添加更多textarea与同一个类,但是,这次,我只能附加一个没有加载ckeditor的裸textarea。
无论如何,我可以在追加后加载ckeditor外观吗?谢谢!
答案 0 :(得分:0)
在附加textarea后使用
CKEDITOR.replace(element);
它用CKEditor实例替换textarea或DOM元素(DIV)。