首页 > 其他 > 详细

自定义checkbox和radio的样式

时间:2019-02-13 19:10:48      阅读:148      评论:0      收藏:0      [点我收藏+]

1.HTML

<div class="checked">
   <input type="checkbox" >
</div> <div class="radio">
  <div class="checked1">
    <input type="radio" name="sex" value="0"> 男
  </div> <div class="checked1 no"> <input type="radio" name="sex" value="1" checked> 女 </div> </div>

 2.CSS

 

.checked{
   width:52px;
   height:52px;
   background:url("img/huiyuanye_weixuanzhong.png") no-repeat;
   background-size:100% 100%;
}
.radio{
   overflow: hidden;
}
.checked1{
   width:90px;
   height:52px;
   float:left;
   background:url("img/huiyuanye_weixuanzhong.png") no-repeat;
   background-size:52px 52px;
}
.no{
   background:url("img/huiyuanye_xuanzhong.png") no-repeat;
}
.checked input,.checked1 input{
   width:50px;
   height:50px;
   opacity: 0;
}

 3.js

$(".checked").on(‘click‘,function(){
    var flag = $(this).find("input").get(0).checked;
    if(flag){
       $(this).addClass("no");
    }else{
       $(this).removeClass("no");
    }
    console.log(flag);
})
console.log($(".checked").find("input").get(0).checked);
console.log($(‘input:radio[name="sex"]:checked‘).val());
$("input[type=‘radio‘]").on(‘click‘,function(){
     console.log($(this).val())
      $(this).parent().addClass("no").siblings().removeClass("no");
})

  

 

自定义checkbox和radio的样式

原文:https://www.cnblogs.com/dyy-dida/p/10371404.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!