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

相关文章:

  • 2021-11-22
  • 2021-10-04
  • 2021-11-07
  • 2022-01-09
  • 2021-11-17
  • 2022-01-16
猜你喜欢
  • 2022-12-23
  • 2021-12-31
  • 2022-03-06
  • 2022-01-03
  • 2022-12-23
  • 2021-05-10
  • 2021-09-12
相关资源
相似解决方案