禁用和启用备注字段取决于备注字段值是否为null


$(document).on('click', '.update', function() {
var user_id = $(this).attr("id");
$.ajax({
url: "fetch_single.php",
method: "POST",
data: {
user_id: user_id
},
dataType: "json",
success: function(data) {
$('#userModal').modal('show');
$('#name').val(data.name);
$('#status_id').val(data.status_id);
$('#note').val(data.note);
$('#note_tow').val(data.note_tow);
$('#note2').val(data.note2);
$('#note3').val(data.note3);
$('#payment').val(data.payment);
$('#ntg_no').val(data.ntg_no);
$('.modal-title').text("تعديل الحالة");
$('#user_id').val(user_id);
$('#action').val("Edit");
$('#operation').val("Edit");
if ($("#note").val() !== '') {
$("#note").prop("disabled", true);
} else {
$("#note").prop("disabled", false);
}
}
});
});

我想禁用和启用注释字段取决于注释字段值为null或不为null,当我设置条件时,问题是在更新任何字段时清除字段注释。

问题已解决,将禁用替换为只读

相关内容

  • 没有找到相关文章

最新更新