我有以下带有三个链接的 html 字符串:
var html = '
<a href="http://www.example.com/help">Go to help page</a>
<a href="http://blog.example.com">Go to blog page</a>
<a href="https://google.com">Go google</a>
';
我的域名是example.com
. 从上面的代码可以看出,有两个内部链接和一个外部链接。
我需要编写“魔术”函数,将rel="nofollow"
属性添加到所有外部链接(不是内部链接)。所以我需要得到以下结果:
var html = '
<a href="http://www.example.com/help">Go to help page</a>
<a href="http://blog.example.com">Go to blog page</a>
<a href="https://google.com" rel="nofollow">Go google</a>
';
我正在尝试编写该函数,这是我当时拥有的:
function addNoFollowsToExternal(html) {
// List of allowed domains
var whiteList = ['example.com', 'blog.example.com'];
// Regular expression
var str = '(<a\s*(?!.*\brel=)[^>]*)(href="/https?://)((?!(?:(?:www\.)?' + whiteList.join(',') + '))[^"]+)"((?!.*\brel=)[^>]*)(?:[^>]*)>',
// execute regexp and return result
return html.replace(new RegExp(str, 'igm'), '$1$2$3"$4 rel="nofollow">');
}
不幸的是,我的正则表达式似乎不起作用。执行后addNoFollowsToExternal(html)
rel="nofollow"
不要添加到外部链接href="https://google.com"
请帮助我修复我的正则表达式以解决我的任务。