如何禁用特定CKEditor的插件?我有一个CKeditor你在哪里发帖子,另一个用来评论那个帖子。我想要的帮助是在评论编辑器上禁用插件。
例如:
评论编辑器有id influxdb
有没有办法只为这个编辑器禁用插件?
答案 0 :(得分:0)
解决:
我所要做的就是创建自定义配置文件custom_config.js
并复制config.js
中的内容。
CKEDITOR.editorConfig = function(config) {
config.mathJaxLib = '//cdn.mathjax.org/mathjax/2.6-latest/MathJax.js?config=TeX-AMS_HTML';
config.extraPlugins = 'lineutils,mathjax,widget';
config.toolbar = [
['Styles'],['Bold','Italic','Underline'],
['NumberedList','BulletedList'],
['Image','Table','-','Link','Flash','Smiley','TextColor','BGColor']
];
};
之后我将编辑器链接到该配置文件:
<textarea name="new_comment" id="CKEditor_<?=$getpost['post_id']?>" placeholder="Write something ..."></textarea>
<script>
CKEDITOR.replace('CKEditor_<?=$getpost['post_id']?>',{
customConfig : '/website/ckeditor/custom_config.js',
});
</script>