如何在仅指向某个类别的类的链接之前添加前缀。
<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
很简单,跟我一样吗?