标签:选中 input creat check element cti checked this tag
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
}
};
标签:选中 input creat check element cti checked this tag
原文地址:http://www.cnblogs.com/web369/p/6031145.html