关于radio一些总结
<label><input type="radio" name="sex" value="男" id="man" checked>男</label>
<label><input type="radio" name="sex" value="女" id="woman">女</label>
<script type="text/javascript">
$('input[name="sex"]:checked').val();//获取选中的值
$('#man').attr('checked');//是否选中 返回checked
$('#man').is(':checked');//是否选中 返回true
$('#man').prop('checked');//是否选中 返回true
$('#woman').attr('checked', true);//设置选中
$('#woman').attr('checked', 'checked');//设置选中
$('#woman').attr('checked', false);//取消选中
$('#woman').removeAttr('checked');//取消选中
</script>