用js一次改变多个input的readonly属性值的方法
<script>
functiondoclick1(){
vartxtN=document.getElementsByTagName("input");
for(i=0;i<txtN.length;i++){
if(txtN[i].type="text"){
txtN[i].readOnly=false;
}
}
}
</script>
<inputtype="text"id="contactus1"readonly>
<inputtype="text"id="contactus2"readonly>
<inputtype="text"id="contactus3"readonly>
<inputtype="button"name="button4"value="修改"onclick="doclick1();"/>