我在这里尝试做的是,在我双击一行后,指向下面的函数......,似乎没有更新div类。
function book(id)
{
$.ajax({
type: "POST",
url: "ajax_servlet.php?action=book",
data: id,
success: function(response)
{
if(response == 'success')
{
$("#ajax_resp").html("<div class='alert alert-success alert-dismissible' role='alert'><button type='button' class='close' data-dismiss='alert'><span aria-hidden='true'>×</span><span class='sr-only'>Close</span></button><strong>Warning!</strong> Better check yourself youre not looking too good.</div>");
}
else
{
$("#ajax_resp").html("");
}
}
});
}
这是div班......
<div class="ajax_resp"></div>
正在返回响应&#34;成功&#34;,但#ajax_resp
未使用该功能进行更新。
有什么想法吗?
答案 0 :(得分:2)
您在jQuery中使用ID
选择器,并在HTML中使用class
。所以应该是:
$(".ajax_resp").html...
^