用javascript控制readOnly属性document.form.name.readOnlyfalse或者document.getElementById(name).r
用javascript控制readOnly属性
document.form.name.readOnly=false;
或者
document.getElementById("name").readOnly=false;
关键是readOnly 注意大小写,js中连词首字母大写
用javascript控制readOnly属性
document.form.name.readOnly=false;
或者
document.getElementById("name").readOnly=false;
关键是readOnly 注意大小写,js中连词首字母大写