<tr> <th>性别</th> <td> <label><input type="radio" id="userSexEnable" name="userSex" value="1" style="width: 15px;" checked>男</label> <label><input type="radio" id="userSexDisable" name="userSex" value="2" style="width: 15px;">女</label> </td>
userSex: $("input[name='userSex']:checked").val() //取值
$("#userSexEnable").prop("checked", true); // 选中