-1

如何在仅指向某个类别的类的链接之前添加前缀。

<p class="syndicated-attribution">
    <a href="http://www.example.com/">Read more →&lt;/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

很简单,跟我一样吗?

4

1 回答 1

1

$(this).text()是标签内的内容:

<a href="site.com">THIS IS THE TEXT</a>

你不想要文本。你想要href. 您已经在使用该attr('href')功能,所以...

于 2013-10-12T13:26:59.390 回答