在jQuery中识别具有相对路径的链接

时间:2013-06-16 05:10:59

标签: javascript jquery regex

我编写了下面的代码来识别外部链接,然后为它们添加“外部”类。我在我的网站上实现了这个,它工作正常,但有一个问题是“Tabs”和“回复评论”选项无法正常工作。它在那里添加“外部”类,但它们是本地链接。如果我的代码出现问题,请告诉我。

标签的链接如下:<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');
        }
    }
});

1 个答案:

答案 0 :(得分: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/