我编写了以下代码来识别外部链接,然后向它们添加“外部”类。我在我的网站上实现了这一点,它工作正常,但有一个问题是“标签”和“回复评论”选项无法正常工作。它向它们添加了“外部”类,但它们是本地链接。让我知道我的代码是否有问题。
标签的链接是这样的:<a href="#tab2" class="external">Popular</a>
和回复链接是这样的:<a class="comment-reply-link external" href="/samsung-galaxy-ace-plus-s7500-how-to-root-and-install-custom-recovery-image/?replytocom=1044#respond" onclick="return addComment.moveForm("comment-1044", "1044", "respond", "420")">Reply</a>
我知道它失败了,因为这些不是绝对链接,因此location.host
不适用于这些链接。你能告诉我如何合并这些链接并向它们添加“本地”类吗?
jQuery(document).ready(function ($) {
var root = new RegExp(location.host);
$('a').each(function(){
if(root.test($(this).attr('href'))){
$(this).addClass('local');
}
else{
// a link that does not contain the current host
var url = $(this).attr('href');
if(url.length > 1)
{
$(this).addClass('external');
}
}
});