.usertype{ border-bottom: 1px solid #E3E3E3; padding: 15px 12px;}
.usertype ul{margin-top:0px;}
.usertype ul li{margin-bottom:15px;}
.usertype ul li label{margin: 0px 15px 0px; width:160px;display:inline-block;vertical-align: top;background: none;
border: none; color: #666;}
.usertype input[type="radio"]:checked + .new-label{ color:#2C96D0 !important; border-color:#2c97d3; background:#2C96D0; }
.usertype ul li label.new-label {
width: auto;
margin-left: 15px;
color: #9E9E9E;
display: inline-block;
font: 700 13px/31px Open Sans Bold,Arial,Helvetica,sans-serif;
padding: 0px 10px;
background: linear-gradient(to bottom, #E8E8E8 0%, #FFF 100%) repeat scroll 0% 0% transparent;
border: 1px solid #D6D6D6;
border-radius: 5px;}
.usertype input {
margin-right: -30px;
}
#sell,#rent,#PG
{
display:none;
}
和你的JS
$(document).ready(function() {
$("input[name$='Want_To']").click(function() {
$('#sell,#rent,#PG').hide();
var test = $(this).val();
$("div.desc").hide();
$("#" + test).show();
});
});
我用小這裏有點不同的方法
CHEC這裏演示Demo
有你添加的jQuery –
任何錯誤在你的瀏覽器控制檯 –
請檢查我的js小提琴 – ritika