我有一个链接:http://fakedomain.net/path
我想用当前域名称动态替换链接,如下所示:http://currentdomain.com/path
$('.link a').each(function(){
this.href = this.href.replace('http://fakedomaine.net/', WHAT_GOES_HERE);
});
但此时我被封锁了
答案 0 :(得分:2)
试试这个
this.href = this.href.replace('http://fakedomaine.net',
location.protocol+"//"+location.host);