怎么用图片取代radio的图标且图片能随着点击而变换

     .radios input[type=radio]{
         display: none;
         border:none;
     }
    .radios label{
        display:-moz-box;
        display:-webkit-box;
        display:box;
        float:left;
        line-height: 60px;
        text-indent: 60px;
        background-size: 60px 60px;
    }
    
    .radio1 {
        background:url(<%=basePath%>img/importment_man.png) no-repeat left top;
    }
     .radio2 {
        background:url(<%=basePath%>img/importment_woman.png) no-repeat left top;
    }   

 .radios input[type=radio]:checked + .radio1{  
        background:url(<%=basePath%>img/importment_man_select.png) no-repeat left top;
        background-size: 60px 60px;
    }
    .radios input[type=radio]:checked + .radio2{  
        background:url(<%=basePath%>img/importment_woman_select.png) no-repeat left top;
        background-size: 60px 60px;
        
    }


 

         
         
         
         
 

你可能感兴趣的:(js)