如何在选择其他按钮时将单选按钮更改为“已选中”?

时间:2015-12-09 18:58:56

标签: javascript jquery button attributes radio

我希望你们能帮我解决这个问题。

当单选按钮 id =“B” id =“A”将其属性更改为'已选中' >被选中了?

单选按钮A和B位于不同的组中。

谢谢!

3 个答案:

答案 0 :(得分:1)

<input type="radio" name="group1" id="A">Radio A
<input type="radio" name="group2" id="B">Radio B
<input type="radio" name="group2" id="C">Radio C

$("input[type='radio'][name='group2']").change(function() {
  if ($('#B').is(':checked')) {
    $('#A').prop("checked", true);
  } else {
    $('#A').prop("checked", false);
  }
});

这是jsFiddle http://jsfiddle.net/8kdb7d6o/

答案 1 :(得分:0)

$("#B").change(function(){
    $("#A").prop('checked', true);
});

答案 2 :(得分:0)

检查无线电输入是否已检查

if($('#B').is('checked')){
   $("#A").prop('checked', true);
}