当选择单选按钮时,Jquery更改div背景颜色?

时间:2013-07-31 23:02:21

标签: jquery css

我有两组独立的单选按钮,我希望它的'divs'颜色在选中时会改变。 我想要的行为非常简单,如果选中单选按钮,相应的div应该改变颜色。 (如果取消选择,则更改回原始颜色。)

然而,问题是如果选择了另一组中的单选按钮,即使其中一个单选按钮仍被选中,第一组的div也会变回其原始颜色。我该如何解决这个问题?

See demo here

使用Jquery:

$(document).ready(function(){
    $('input:radio').change(function(){
        $('div.highlight').removeClass('highlight');
        $(this).closest('div').addClass('highlight');
    });
});

2 个答案:

答案 0 :(得分:2)

对于第二个问题,您需要将一个块的输入包装到一个单独的包装器中并更改一些代码..

<强> JS

$(document).ready(function(){
    $('input:radio').change(function(){
        var $this = $(this);
        // Only remove the class in the specific `box` that contains the radio
        $this.closest('.box').find('div.highlight').removeClass('highlight');
        $this.closest('.q').addClass('highlight');
    });
});

<强> HTML

<div class="box"> 1st set
    <div class="q">
        <input type="radio" id="1" name="11" />
        <label for 1>a</label>
    </div>
    <div class="q">
        <input type="radio" id="2" name="11" />
        <label for 2>b</label>
    </div>
</div>
<div class="box">
    <hr> 2nd set
    <div class="q">
        <input type="radio" id="3" name="22" />
        <label for 3>a</label>
    </div>
    <div class="q">
        <input type="radio" id="4" name="22" />
        <label for 4>b</label>
    </div>
</div>

<强> Check Fiddle

答案 1 :(得分:1)

不是jQuery,但你可以查看css规则(嵌套很重要:div.highlight和radio需要兄弟姐妹):

Dabblet example of below

div.entry {
    position: relative;
    padding: 8px;
    width: 50%;
}
div.entry div.highlight {
    background-color: #fff;
    position: absolute;
    z-index: -1;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}
div.entry input:checked ~ div.highlight {
    background-color: orange;
}

<div class="entry">
    <input type="radio" name="list" />This is one option
    <div class="highlight"></div>
</div>
<div class="entry">
    <input type="radio" name="list" />This is another option
    <div class="highlight"></div>
</div>
<div class="entry">
    <input type="radio" name="list" />This is a third option
    <div class="highlight"></div>
</div>