gpt4 book ai didi

ckeditor - Nofollow CKEditor 中的链接

转载 作者:行者123 更新时间:2023-12-01 23:15:51 24 4
gpt4 key购买 nike

有谁知道我可以在 CKEditor 的什么地方设置,所以所有添加的链接都会有 rel="nofollow",即使用户没有指定它?

最佳答案

您可以按照本页中的说明创建一个数据过滤器来检查每个链接: http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Data_Processor

这段(未经测试的)代码应该或多或少是您所需要的:

editor.dataProcessor.htmlFilter.addRules(
{
elements :
{
a : function( element )
{
if ( !element.attributes.rel )
element.attributes.rel = 'nofollow';
}
}
});

关于ckeditor - Nofollow CKEditor 中的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6930097/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com