根据类更改href

时间:2013-10-12 12:24:38

标签: javascript class 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 - &gt; http://site.com/http://www.example.com

像我一样,

非常简单?

1 个答案:

答案 0 :(得分:1)

$(this).text()标记内容是否为

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

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