显示为Is Canceled = true的值,但未选中复选框。 任何人都可以告诉如何在true时获取代码,然后在checkbox中选中是否为false,然后取消选中。该代码无法正常工作。
function POGetby(PO_ID) {
$.ajax({
url: "/Home/POMain_Select",
type: "GET",
contentType: "application/json;charset=UTF-8",
data: { 'PO_ID': PO_ID },
dataType: "json",
success: function (result) {
if (!$("#IsUCancelled").is(":checked")) {
$('#IsUCancelled').val(result.IsCancelled);
}
$('#UpdateModel').modal('show');
$('#UpdatePO').show();
},
error: function (errormessage) {
alert(errormessage.responseText);
}
});
return false;
}
答案 0 :(得分:0)
$('#IsUCancelled').prop('checked', result.IsCancelled);