如何在链接之前添加前缀仅限于特定类别的类别。
<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 - &gt; http://site.com/http://www.example.com
像我一样,非常简单?
答案 0 :(得分:1)
$(this).text()
标记内容是否为
<a href="site.com">THIS IS THE TEXT</a>
你不想要文字。你想要href
。您已经在使用attr('href')
功能了,所以......