CKEditor在自定义文件夹中不起作用

时间:2014-05-08 17:17:03

标签: javascript ckeditor

我有我的根文件夹htdocs/_和我的自定义CKEditor文件夹htdocs/_/ckeditor,其中包含所有CKEditor文件。但是当我运行CKEditor时,它会在htdocs/_ <中查找所有CKEditor文件/ p>

<textarea name='post_editor' id='post_editor' rows='10' cols='80'></textarea>
<script type='text/javascript'>
    CKEDITOR.replace('post_editor');
</script>

1 个答案:

答案 0 :(得分:1)

它适用于URL中的下划线,因此我不知道您的情况可能有什么问题。你是吗?更改了ckeditor.js文件的名称?

要解决此问题,请尝试设置CKEDITOR_BASEPATH。您可以在Specifying the Editor Path guide中找到更多信息。

<script>
    var CKEDITOR_BASEPATH = 'htdocs/_/ckeditor/';
</script>
<script src="htdocs/_/ckeditor/ckeditor.js"></script>