3

我想给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 的文本编辑器使用这些问题的答案。在这个问题中检查两个链接的 rel 属性。


<script src="//cdn.ckeditor.com/4.5.10/standard/ckeditor.js"></script>在我的页面上使用 from cdn。

4

3 回答 3

4

此解决方案也适用于 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';
                    }
                }
            }
        }
    });
})
于 2017-06-09T09:39:37.727 回答
2

我解决了它;

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';
                            }
                        }
                    }
                }
            });
    })
于 2016-09-09T17:49:52.387 回答
0

所以你需要比较主机,这样的东西应该可以工作。

a : function( element )
    {
        if ( element.host !== window.location.host ) {
            element.attributes.rel = 'nofollow';
        }
    }
于 2016-09-09T17:25:40.697 回答