0

我需要使用从此开关开始的复选框禁用和启用 3 单选按钮

jQuery("input:checked").each(function () {
        var valore = jQuery(this).val();
        if(str != ""){
            str += " + ";
        }
        switch(valore)
                {
                    case "1": 
                       str += "casa";
                       if(num == "") num = "cooc €";                                            
                    break;
                    case "2": 
                       str += "Struttura";
                       if(num == "") num = "cccd";
                    break;
                    case "3": 
                       str += "inserzione";
                       if(num == "") num = "ddds;";
                    break;
                    default:;
                }

html

<input id="radio-01" value="3" name="radio" type="radio" class="rambo" />
<input id="radio-01" value="3" name="radio" type="radio" class="rambo" />
<input id="radio-01" value="3" name="radio" type="radio" class="rambo" />
<input id="radio-01" value="3" name="checkbox" type="checkbox" class="rambo" />

帮助我 感谢您的建议

4

2 回答 2

0

喜欢班级的名字。

$('input [type="radio"]).attr('checked', true)如果您想检查所有 3 个无线电,您应该在交换机内部使用。

于 2012-05-04T08:20:44.780 回答
0
$('input[type="radio"]').attr('disabled', true);
于 2014-11-24T20:02:50.503 回答