码迷,mamicode.com
首页 > Web开发 > 详细

js取消radio选中 反选

时间:2016-11-04 19:55:14      阅读:481      评论:0      收藏:0      [点我收藏+]

标签:选中   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
}
};

js取消radio选中 反选

标签:选中   input   creat   check   element   cti   checked   this   tag   

原文地址:http://www.cnblogs.com/web369/p/6031145.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!