首页 > 代码库 > js取消radio选中 反选

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
}
};

js取消radio选中 反选