如何在鏈接之前添加前綴僅限於某個類別的類別。基於類的更改href
<p class="syndicated-attribution">
<a href="http://www.example.com/">Read more →</a>
</p>
使用JS那樣
$('.syndicated-attribution a').attr('href', function() {
return 'http://site.com/' + $(this).text()
});
如:http://www.example.com - >http://site.com/http://www.example.com
很簡單,因爲我做什麼?
您的問題是什麼? – Kaarel