无需手动为每个 href 分配 ID,目标是将两个 href 的 URL 更改为不同的 URL
<div class="example">
<p><a href="http://www.google.com/example?test1332">Test Site</a></p>
<p><a href="http://www.google.com/example?test1332">Test Site</a></p>
</div>
这是我的 jquery 尝试,它不起作用
$(".example").each(function() {
this.setAttribute("href", this.getAttribute("href").replace("http://www.test.com"));
});
这是我的小提琴http://jsfiddle.net/n322j/