有什么办法可以将Class添加到多个链接?我有两个不同的 div 包含相同的链接集;单击链接应将相同的类应用于另一个 div 集中的“等效”链接。
<style>
.one{margin:70px 0}
.one a{ margin:10px; padding:5px 10px; background-color:green; text-decoration: none; color:white}
.selected{background-color: yellow;}
</style>
<div class="one">
<a href="#first">1</a><a href="#second">2</a><a href="#third">3</a>
</div>
<div class="two">
<a href="#first">1</a><a href="#second">2</a><a href="#third">3</a>
</div>
<script>
$("a.one").click(function() {
$(this).addClass(".selected").filter(':first').click();
});
</script>