如何将http://facebook.com添加到#facebook_urls
中包含的相对网址?例如:
<a href="/test.html">
变为
<a href="http://facebook.com/test.html">
#facebook_urls
也包含绝对网址,因此我想确保不接触这些网址。
答案 0 :(得分:2)
这样的东西?
$('#facebook_urls a').each(function() { if(!this.href.match('^http')) { this.href = "http://facebook.com/" + this.href } })