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

使用jquery实现单选框、多选框取消选中状态

时间:2016-11-14 17:18:58      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:nbsp   状态   ios   res   div   cti   选中   query   input   

function radioReset(){
    /*方式一*/
    /* var radios = $("input[type=‘radio‘]");
     for (i=0; i<radios.length; i++){
         if(radios[i].checked){
              radios[i].checked = false;
          } 
     } */
     /*方式二*/
    $("input[type=‘radio‘]").removeAttr(‘checked‘);      
}

 <input type="button" class="button_gray" value="重 填" onclick="radioReset();">

切记 :如果在input类型为reset的上面添加onclick="radioReset();"如:

<input type="reset" class="button_gray" value="重 填" onclick="radioReset();">

取消选中的js代码不生效

使用jquery实现单选框、多选框取消选中状态

标签:nbsp   状态   ios   res   div   cti   选中   query   input   

原文地址:http://www.cnblogs.com/super-chao/p/6062403.html

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