js取消radio选中 反选
var radio=document.createElement("input");
radio.type="radio";
radio.onclick = function(){
if (this.tag==1){
this.checked=false;
this.tag=0;
}
else{
this.checked=true;
this.tag=1
}
};
通过技术改变生产方式,提高生产效率
var radio=document.createElement("input");
radio.type="radio";
radio.onclick = function(){
if (this.tag==1){
this.checked=false;
this.tag=0;
}
else{
this.checked=true;
this.tag=1
}
};