纯css radio button样式
<div class="inRadio RadioStyle">
                  <input type="radio" checked onclick="editWareHouseIt(this)" id="editOrInsHouse01"
                     name="editOrInsHouse" value="01">
                  <label for="editOrInsHouse01">按钮一</label>
                  <input type="radio" onclick="editWareHouseIt(this)" id="editOrInsHouse02" name="editOrInsHouse"
                     value="02">
                  <label for="editOrInsHouse02">按钮二</label>
               </div>.RadioStyle input {
  display: none
}
.RadioStyle label {
  border: 1px solid #00a4ff;
  color: #fff;
  line-height: 28px;
  min-width: 80px;
  text-align: center;
  float: left;
  font-size: 10px;
  border-radius: 4px
}
.RadioStyle input:checked+label {
  border: 1px solid #00a4ff;
  background-size: 21px 21px;
  color: #fff;
  background-color: #00a4ff;
}
.RadioStyle input:disabled+label {
  opacity: 0.7;
} 相关推荐
  NARUTOLUOLUO    2019-07-01  
   zhanghaibing00    2020-06-28  
   风飞飘扬    2014-06-24  
   lbPro0    2019-11-03  
   donghongbz    2019-10-19  
   85931235    2012-01-11  
   yFifhting    2017-06-08  
   人心    2019-06-30  
   攻城师    2019-06-29  
   HotStrong    2017-06-08  
   zfjdoreen    2016-04-13  
   89367741    2016-03-30  
   shiyiboke    2016-03-29  
   SinhaengHhjian    2016-01-25  
   89453862    2015-10-10  
   SinhaengHhjian    2015-07-31  
 