我有两个单选按钮来选择优先级为高或常规。
我编写了这个函数来禁用未选中的单选框。出于某种原因,它不会禁用该框。我在控制台中没有错误。
function disablePriority(){
var reg = $('input[value="ct100"]');
var high = $('input[value="ct101"]');
alert('cp');
if(reg.attr("checked")){
alert('cp1');
high.attr("disabled","disabled");
}else{
alert('cp2');
reg.attr("disabled","disabled");
}
}
这是两个单选框的 html
<input id="ctl00_m_g_72c1058f_372a_4780_b0c6_58f4c7012b35_ff61_ctl00_ctl00" type="radio" name="ctl00$m$g_72c1058f_372a_4780_b0c6_58f4c7012b35$ff61$ctl00$RadioButtons" value="ctl00">
<input id="ctl00_m_g_72c1058f_372a_4780_b0c6_58f4c7012b35_ff61_ctl00_ctl01" type="radio" name="ctl00$m$g_72c1058f_372a_4780_b0c6_58f4c7012b35$ff61$ctl00$RadioButtons" value="ctl01" checked="checked">