html:<div id="bb">
<input name="cc" type="radio" value="4" >hh</input>
<input name="cc" type="radio" value="5" >hha</input>
<input name="cc" type="radio" value="6" >hhb</input>
</div>
js:var aa = $('#bb input[name="cc"]:checked ').val();
html:<div id="bb">
<input name="cc" type="radio" value="4" >hh</input>
<input name="cc" type="radio" value="5" >hha</input>
<input name="cc" type="radio" value="6" >hhb</input>
</div>
js:var aa = $('#bb input[name="cc"]:checked ').val();