我用新的ckeditor升级了旧的fckeditor,只是我在努力应对新的行为。
新的似乎删除了我的完整表:
例如,根据此输入,他将
<table>
<tr>
<td>
This is a test
</td>
</tr>
</table>
这样:
<p>This is a test</p>
我需要该表,那么如何阻止 ckeditor 将<table>
代码替换为<p>
代码?
答案 0 :(得分:6)
config.toolbar = [
{ name: 'insert', items: [ 'Table' ] }
];
请使用上面的代码,因为在新版本的ck编辑器中你必须提到工具栏中的表格。
答案 1 :(得分:0)
在 jibran 的回答中提到的在配置中添加表格项目时。它给了我一个错误。
最好的方法是打开此处给出的 CKEditor 构建器:https://ckeditor.com/cke4/builder
在配置中选择表并下载编辑器以使用它。