替换为当前域

时间:2017-06-29 21:03:31

标签: jquery url href location-href

我有一个链接:http://fakedomain.net/path

我想用当前域名称动态替换链接,如下所示:http://currentdomain.com/path

$('.link a').each(function(){
    this.href = this.href.replace('http://fakedomaine.net/', WHAT_GOES_HERE);
});

但此时我被封锁了

1 个答案:

答案 0 :(得分:2)

试试这个

this.href = this.href.replace('http://fakedomaine.net', 
location.protocol+"//"+location.host);