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....