js取消radio选中 反选
Posted web369
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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选中 反选的主要内容,如果未能解决你的问题,请参考以下文章