我有很多下載鏈接是爲我的用戶在我的網站中提供的,我希望爲這些鏈接添加特定的參考鏈接。例如:jQuery在鏈接中添加域名
http://rapidgator.net/file/xxxx
現在我想用jQuery在每個外部鏈接的鏈接前添加我的對象鏈接。我搜索,只發現了jQuery爲attr
:
jQuery('a[href*="http://"]:not([href*="http://www.mysite.com"])').attr('rel', 'nofollow');
但在我的情況下,我想添加我的域名中的鏈接的前面,這樣網址:
<a href="http://rapidgator.net/file/xxxx">http://rapidgator.net/file/xxxx</a>
將變爲:
<a href="http://myspecificdomain.com?ref=http://rapidgator.net/file/xxx">http://rapidgator.net/file/xxxx</a>
這可以使用jQuery來完成嗎?
謝謝你,我記住這是非常簡單的,而不是與實際演示困惑錨.. 。謝謝Sari Alalen –
這實際上是我12分鐘後發佈的答案。 – Charlie