我正在使用CKEditor 4.5.5版本。
我添加了下一个添加nofollow的代码。
它工作正常并存储了我的数据库。但是,当我修改帖子时,将使用CKEditor auto-removed ref="nofollow"
属性。
如何在CKEditor上加载原点属性?
-写入页面。添加nofollow代码-
CKEDITOR.on('instanceReady', function () {
CKEDITOR.on('dialogDefinition', function (ev) {
var editor = ev.editor;
editor.dataProcessor.htmlFilter.addRules({
elements: {
a: function (element) {
if (!element.attributes.rel)
element.attributes.rel = 'nofollow';
}
}
});
});
});
答案 0 :(得分:0)
您需要修改文件ckeditor_config.js
。
添加以下代码:
config.extraAllowedContent = 'a[rel]';