14

我希望单选按钮在我单击它的父 div 时选中/取消选中。单选按钮最初是隐藏的。

我试图通过环绕<label>div 来实现这一点。它工作,但jQ.toggleClass停止工作。

HTML

<div class="big">
This is a div 1
<input id="chb" type="radio" />
</div>

<br/>

<div class="big">
This is a div 2
<input id="chb" type="radio" />
</div>

CSS

.big {

    width:100px;
    height:100px;
    background-color:red;
    cursor:pointer;

}

.hli {

    border:2px solid blue;

}

/*.chb{display:none;}*/

江青

$('.big').click(function() {
$('.hli').toggleClass('hli');   
$(this).toggleClass('hli');
});

JSFIDDLE:http: //jsfiddle.net/QqVCu/2/

4

7 回答 7

28

怎么样:http: //jsfiddle.net/sgospodarets/QqVCu/5/?所有必要的 - 将输入包装在标签中。然后不需要JavaScipt。

于 2012-07-21T12:05:18.260 回答
10

使用纯 HTML/CSS 解决方案:

.isHidden {
  display: none; /* hide radio buttons */
}

.label {
  display: inline-block;
  background-color: red;
  width: 120px;
  height: 120px;
  padding: 5px 10px;
}

.radio:checked + .label {   /* target next sibling (+) label */
  background-color: blue;
}
<input id="radio_1" class="radio isHidden" name="radio_a" type="radio">
<label for="radio_1" class="label">1</label>

<input id="radio_2" class="radio isHidden" name="radio_a" type="radio">
<label for="radio_2" class="label">2</label>

于 2012-07-21T11:57:16.357 回答
3

告诉我,如果你想要这个:http: //jsfiddle.net/QqVCu/6/

jQuery(更新)

$('.big').click(function() {
    if($(this).find('input[type="radio"]').is(':checked')){
       $(this).find('input[type="radio"]').prop('checked', false);
    }
    else{
       $(this).find('input[type="radio"]').prop('checked', true);
    }
    $('.hli').toggleClass('hli');    
    $(this).toggleClass('hli');
});
于 2012-07-21T11:49:19.417 回答
3

您可以使用prop()方法,尝试以下方法:

$('.big').click(function() {
  $('.hli').removeClass('hli');
  $(this).addClass('hli').find('input').prop('checked', true)    
});

演示

请注意,ID 必须是唯一的,并且为了正常工作,单选按钮应具有名称属性:

<input id="chb1" type="radio" name="radioGroup"/>
<input id="chb2" type="radio" name="radioGroup"/>
于 2012-07-21T11:55:30.497 回答
2

试试这个:http: //jsfiddle.net/ZuXvM/

要选中单个单选按钮,您应该按名称对它们进行分组(为属于该组的所有按钮提供相同的名称)

于 2012-07-21T11:53:23.320 回答
0

试试这个:

http://jsfiddle.net/QqVCu/50/

为了绕过 jQuery 事件冒泡,我使用常规 JS 来触发 click()。

$('.big').click(function () {
    $('.hli').toggleClass('hli');
    $(this).toggleClass('hli');
    var Id = $(this).find('input[type=radio]').attr('id');
    document.getElementById(Id).click();
});
于 2013-04-05T22:22:46.570 回答
0

如果你想使用 JQuery,你应该这样做

$('.big').on({
    click: function () {

      $('.hli').toggleClass('hli');
      $(this).toggleClass('hli');

    }
}, 'input[name="chb"]');
于 2019-04-03T10:50:57.987 回答