-4

HTML

<div id="buttons">
<div id="answer_1" class="button"> </div>
<div id="answer_2" class="button"> </div>
<div id="answer_3" class="button"> </div>
</div>

我想要什么:每次单击具有“按钮”类的 div 之一时,我都想更改 id 为“answer_1”的 div 的背景。div 的 id 将是动态的,并且会改变它们的顺序,我想总是用 id“answer_1”修改 div 的背景。(所以我想在点击时按类选择并按 id 应用样式)。

我希望我不会要求太多代码,因为我是 jQuery 新手。谢谢!

4

1 回答 1

0
$(function () {
   $(".button").click(function(){
       $("#answer_1").addClass("active");
   });
});

CSS

.active{
    background:#ccc;
}
于 2013-09-07T10:47:54.083 回答