我正在使用这种方式使用类方法在我的php页面中加载ckeditor:-
<script type="text/javascript" src="../ckeditor.js"></script>
<textarea class="ckeditor" name="editor0_en"><?=$name;?>hellohello</textarea>
它适用于初始文本区域。然后,我尝试在单击按钮后附加更多具有相同类的 textarea,但是,这一次,我只能在没有加载 ckeditor 的情况下附加一个裸 textarea。
无论如何我可以在附加后加载ckeditor外观吗?谢谢!