我编写了下面的代码来识别外部链接,然后为它们添加“外部”类。我在我的网站上实现了这个,它工作正常,但有一个问题是“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("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');
}
}
});
答案 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');