我有一个调用我的检索和删除 php 的代码,两者都正常工作我可以从数据库中检索和删除数据。我收到警报,确认我是否要删除也很好的数据。但是每当我单击“是”或“否”时,我都会收到消息:无法删除记录!, 而不是Record/s 已被删除!即使该记录确实已从数据库中删除。
我没有发布我的检索和删除 php,因为它们都在工作。只需要更正警报消息的显示方式。
这是我从数据库中查询和删除的脚本:
$(document).ready(function(){
$("#RetrieveList").on('click',function() {
var xid = $('#XiD').val();
var date = $('#Date').val();
$.post('resultgenerator_test.php',{xid:xid, date:date}, function(data){
$("#results").html(data);
});
return false;
});
$("#DeletefromDB").click(function() {
if (confirm("Are you sure you want to delete this Record/s?"))
var id = $('input[name=checkbox]:checked').map(function()
{
return $(this).val();
}).get();
$.post('deletedata_test.php',{id:id}, function(data)
{
$("#result").html(data);
if(data == 'true') {
$('#'+id).remove();alert('Record/s has been deleted!');
}
else {
alert('Record/s could not be deleted!');
}
document.messages.submit();
return false;
});
});
});