看了大约两个小时 - 我不知道为什么它不能像 $('#add').html(response) 那样工作,但是当我将函数更改为 $('.add') 时工作正常。 html(响应)。
任何帮助是极大的赞赏...
function addc() {
id=$('#id').val();
$.ajax ({
method: "GET",
url: 'addcal.php',
data: {"case":id},
success: function(response) {
$('#add').html(response);
}
});
}