我有两个单选框,但无法将它们设为只读,因此我决定禁用未选中的一个选项。我尝试使用 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;
}
常规单选框
<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"
>
高单选框
<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"
>