我想将rel="nofollow"
提供给我的外部链接,其内容由ckeditor管理。
example.com =我的网站
externallink.com =任何外部链接
例如:
<p>
Lorem <a href="https://example.com/an-article.html">ipsum</a> dolar
<a href="http://externallink.com/example.html" rel="nofollow">sit</a> amet.
</p>
此解决方案:
editor.dataProcessor.htmlFilter.addRules(
{
elements :
{
a : function( element )
{
if ( !element.attributes.rel )
element.attributes.rel = 'nofollow';
}
}
});
来自https://stackoverflow.com/a/6930940/1848929的将nofollow
添加到所有a
元素。
如何只过滤外部链接?
关于CKEditor数据处理器的深层文档:http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Data_Processor
注意:Stackoverflow的文本编辑器使用这些问题的答案。检查两个链接&#39;这个问题中的rel属性。
我在我的网页上使用cdn中的<script src="//cdn.ckeditor.com/4.5.10/standard/ckeditor.js"></script>
。
答案 0 :(得分:2)
此解决方案也适用于Internet Explorer:
CKEDITOR.on('instanceReady', function(ev) {
var editor = ev.editor;
editor.dataProcessor.htmlFilter.addRules({
elements : {
a : function( element ) {
if ( !element.attributes.rel ){
//gets content's a href values
var url = element.attributes.href;
//extract host names from URLs (IE safe)
var parser = document.createElement('a');
parser.href = url;
var hostname = parser.hostname;
if ( hostname !== window.location.host) {
element.attributes.rel = 'nofollow';
element.attributes.target = '_blank';
}
}
}
}
});
})
答案 1 :(得分:1)
我解决了它;
CKEDITOR.on('instanceReady', function(ev) {
var editor = ev.editor;
editor.dataProcessor.htmlFilter.addRules({
elements : {
a : function( element ) {
if ( !element.attributes.rel ){
//gets content's a href values
var url = element.attributes.href;
//extract host names from URLs
var hostname = (new URL(url)).hostname;
if ( hostname !== window.location.host && hostname !=="youranothersite.com") {
element.attributes.rel = 'nofollow';
}
}
}
}
});
})
答案 2 :(得分:0)
所以你需要比较主机,这样的东西应该工作。
a : function( element )
{
if ( element.host !== window.location.host ) {
element.attributes.rel = 'nofollow';
}
}