将域添加到相对URL

时间:2010-04-11 17:06:01

标签: jquery replace

如何将http://facebook.com添加到#facebook_urls中包含的相对网址?例如:

<a href="/test.html">

变为

<a href="http://facebook.com/test.html">

#facebook_urls也包含绝对网址,因此我想确保不接触这些网址。

1 个答案:

答案 0 :(得分:2)

这样的东西?

$('#facebook_urls a').each(function() {
  if(!this.href.match('^http')) {
    this.href = "http://facebook.com/" + this.href
  }
})