CKEditor无法读取config.js配置的问题

问题描述

CKEditor中配置文件config.js不生效

解决办法

在初始化的时候,指定config.js的位置,你也可以重新自定义一个,指定你要使用的配置文件路径即可


config.js

/**
 * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license
 */

CKEDITOR.editorConfig = function( config ) {
	// Define changes to default configuration here. For example:
	// config.language = 'fr';
	// config.uiColor = '#AADC6E';
	config.language = 'en';
	config.toolbar = 'Full';
	// config.keystrokes = [
	// 	[CKEDITOR.CTRL + 86 /* V */, 'paste']
	// ];
};

 效果图

CKEditor无法读取config.js配置的问题_第1张图片

注意,这里textarea就不能加class="ckeditor"了,否则会报错

[CKEDITOR] Error code: editor-element-conflict. 

你可能感兴趣的:(CKEditor,CKEditor,config.js)