2013-04-14 97 views
1

我有很多的這種結構鏈接:覆蓋HREF使用jQuery

<a class="myclass" href="http://externaldomain.com">Anchor Text</a> 

我想裝上去的URL之前的href屬性來改變這樣的結構:

<a class="myclass" href="http://internaldomain.com/http://externaldomain.com">Anchor Text</a> 

我認爲jquery是完美的做到這一點,但我不知道如何。你可以幫我嗎?

+0

HTTP://api.jquery。 COM /每個/ http://api.jquery.com/attr/ – Dave

+1

你有沒有試過的代碼? – user1048676

回答

0
$('.myclass').each(function(){this.href = "http://internaldomain.com/"+this.href}); 
0

hrefa元素的屬性,所以可以使用與myclass類元素attr方法改變它。