0

我编写了以下代码来识别外部链接,然后向它们添加“外部”类。我在我的网站上实现了这一点,它工作正常,但有一个问题是“标签”和“回复评论”选项无法正常工作。它向它们添加了“外部”类,但它们是本地链接。让我知道我的代码是否有问题。

标签的链接是这样的:<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(&quot;comment-1044&quot;, &quot;1044&quot;, &quot;respond&quot;, &quot;420&quot;)">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');
        }
    }
});
4

1 回答 1

6

获取属性,而不是获取属性:

var url = $(this).prop('href');

或者:

var url = this.href;

区别很重要:

> $('<a href="#bar">foo</a>').prop('href')
"http://stackoverflow.com/questions/17130384/identify-links-with-relative-path-in-jquery#bar"
> $('<a href="#bar">foo</a>').attr('href')
"#bar"

另外,我会使用location.origin而不是location.host

$('a').filter(function() {
    return this.href.indexOf(location.origin) === 0;
}).addClass('local');

演示:http: //jsfiddle.net/q6P4W/

于 2013-06-16T05:15:05.500 回答