我有两个收音机盒,我无法使它们只读,所以我决定禁用未检查的一个选项。我尝试使用jquery“获取”元素以及从控制台收到的无线电盒上的信息。但是,它没有用。我从来没有真正写过Jquery,所以我很难找到错误。
//priority - disable unchecked radiobox
var high = $("input[value='ct101']");
var reg = $("input[value='ct100']");
if(reg.checked == true){
high.disabled=true;
}else{
reg.disabled=true;
}
常规Radiobox
<input id="ctl00_m_g_0537f4e9_69aa_409a_b5ed_15e3624efeab_ctl00_ctl05_ctl02_ctl00_ctl00_ctl04_ctl00_ctl00"
type="radio"
value="ctl00"
disabled="true"
name="ctl00$m$g_0537f4e9_69aa_409a_b5ed_15e3624efeab$ctl00$ctl05$ctl02$ctl00$ctl00$ctl04$ctl00$RadioButtons"
>
高Radiobox
<input id="ctl00_m_g_0537f4e9_69aa_409a_b5ed_15e3624efeab_ctl00_ctl05_ctl02_ctl00_ctl00_ctl04_ctl00_ctl01"
type="radio"
name="ctl00$m$g_0537f4e9_69aa_409a_b5ed_15e3624efeab$ctl00$ctl05$ctl02$ctl00$ctl00$ctl04$ctl00$RadioButtons"
value="ctl01"
checked="checked"
>