Ckeditor不保存按钮标签

时间:2018-04-09 11:08:40

标签: php ckeditor

当我通过ckeditor输入save html时,我会错过html内容中的标记。是否有任何ckeditor配置我必须做什么来允许html标签,如内部的HTML内容?感谢。

1 个答案:

答案 0 :(得分:1)

在实例化ckeditor以允许特定标记时必须使用allowedContent属性,或 allowedContent:true 允许所有内容

https://docs.ckeditor.com/ckeditor4/latest/api/CKEDITOR_config.html#cfg-allowedContent

使用config.js或指定textarea的页内配置:

https://docs.ckeditor.com/ckeditor4/latest/guide/dev_configuration.html

就我而言(我使用的是Symfony ckeditor软件包)我也可以通过config.yml中的bundle配置来设置它。