我对javascript不是很熟,有几个小问题想请教版主 问题:有两个单选按钮,我想通过这两个按钮做个开关,下面有好多的复选按钮,如何用单选按钮控制复选按钮的 disabled 值 为TRUE 或 FALSE 下面是我做的代码,可是不好使! function xlist()
{
document.form1.age.disabled =true;
document.form1.sex.disabled =true;
document.form1.xl.disabled =true; document.form1.zy.disabled =true;
}
function blist()
{ document.form1.age.disabled =false;
document.form1.sex.disabled =false;
document.form1.xl.disabled =false; document.form1.zy.disabled =false; } 以填表形式添加 <input name="key" type="radio" id="radio" value="on" onClick="javascript:xlist()"> 不以填表形式添加 <input name="key" type="radio" value="off" checked onclick="javascript:blist()"> <br> <input name="age" type="checkbox" id="age" value="6-15," checked> 少年 <input name="age" type="checkbox" id="age" value="16-30," checked> 青年 <input name="age" type="checkbox" id="age" value="31-50," checked> 中年 <input name="age" type="checkbox" id="age" value="50-100" checked> 老年