ckeditor 粘贴样式不能显示

CKEDITOR.config.pasteFilter=null; //粘贴过滤器设置为null 即可

CKEDITOR.config.allowedContent = {//内容规则 允许的标签
$1: {
// Use the ability to specify elements as an object.
elements: CKEDITOR.dtd,
attributes: true,
styles: true,
classes: true
}
};

CKEDITOR.config.disallowedContent = 'script; *[on*];img{width,height};img[width,height]';//内容规则 不允许的标签

: String

  • 'plain-text' – Content will be pasted as a plain text.
  • 'semantic-content' – Known tags (except div , span ) with all attributes (except style and class ) will be kept.
  • 'h1 h2 p div' – Custom rules compatible with CKEDITOR.filter .
  • null – Content will not be filtered by the paste filter (but it still may be filtered by Advanced Content Filter ). This value can be used to disable the paste filter in Chrome and Safari, where this option defaults to 'semantic-content' .
本文由Jack Soong根据英文版 CKEditor 4 Developer's Guide进行翻译,希望对使用 CkEditor 4的开发人员有所帮助。2013.04.09 安装 CKEditor 是很容易的。选择合适的过程(新安装或升级),按下面描述的步骤安装。 1、新安装 第一次安装 CKEditor ,按如下方式进行: 1) 从 CKEditor 网站:http: 现在国内用 wps 的人很多,有时候文档编辑好了,想直接贴贴到 编辑中,发现贴贴进去之后都是空格符号, 显示 空白的,无法识别内容,这个是 跟 的格式问题。想要支持 解析,那就必须要会 自定义编辑器,自定义编辑器 步骤很简单并不难,然后官方提供了 的解析插件 ,现在只需要在这个插件的基础上加上 的解析代码,然后打包生成一个自定义编辑器,导入使用即可。按照下面调整完成之后, 与 都可以支持贴贴。在自定义编辑过程中,看项目中是否已经安装好了 ,一般默认编辑器是有的,所以直接去找到 文件夹即可。.       关于集成过程,请参看 https://blog.csdn.net/bigboysunshine/article/details/80117631 本文将集成后如何让图片宽度自适应.       使用 ckeditor 中发现,上传图片时,总会自动给img标签添加width和height的style内联 样式 ,如图        这样宽高就固定死了.       好在插件本身有提供内... 注:使用 CKEditor 版本为js版本的 CKEditor 4,所有配置均参考自 CKEditor 官方API:http://docs. ckeditor .com/,以及实践经验 一、快速使用 1、引入 CKEditor 的js文件 // 当此文件载入完毕之后, CKEditor 的JavaScript API就已准备就绪,可以使用 <script src=" ckeditor /cked... 需求:当使用了一个自定义按钮插入了规则所不允许的html代码。 editor.insertHtml(''+ CKEDITOR .tools.htmlEncode("百度")+'',"unfiltered_html"); 虽然使用inertHtml()插入了非html所规定的属性,但是点击“源码”多次,a标签里的tips属性会被删除。 在config.