我有一个包含很少元素的表单,包括一个性别单选按钮。表单中有两个按钮,一个是从 mySQL 数据库中读取数据以填写表单进行编辑,另一个是在编辑后更新数据库数据。
我可以正确更新数据库,也可以正确填写除单选按钮之外的所有元素的值。
问题是单选按钮可以第一次正确设置。但是,一旦我更新数据,就无法使用数据库中的数据进行设置。
这是代码。欣赏。
$.ajax({
type: "POST",
dataType: "json",
url: "databaseController.php",
data: disdata,
cache: false,
error: function(response){},
success: function(response){
$("#txt_mrn").val(response['patientMRN']);
$("#txt_initial").val(response['patientName']);
$("#txt_bithdate").val(response['DOB']);
$("input[name=rd_gender][value='" + response['gender'] + "']").attr('checked', 'checked');
} // end of success;
});//end of ajax;