我有一个数据表(不是服务器处理),我有 2 个链接,每行一个批准一个拒绝。单击任一链接后,它会修改数据库。这工作正常,我还使用以下内容在单击任一链接后删除该行。
parent.animate({'backgroundColor':'#fb6c6c'},300);
parent.slideUp(300,function() {});`
问题是如果单击批准按钮,数据表中的 days_left 会被计算修改(这工作正常),但我需要在 ajax 成功时重新绘制。
因此过程将是单击批准链接,计算 days_left,使用新的 days 左侧列更新表格。
任何帮助都会很棒我已经坚持了一段时间。
$('a.deny').click(function(e) {
e.preventDefault();
var parent = $(this).closest("tr");
$.ajax({
type: 'get',
url: 'index.php',
data: 'ajax=1&deny=' + parent.attr('id').replace('record-',''),
beforeSend: function() {
parent.animate({'backgroundColor':'#fb6c6c'},300);
},
success: function() {
parent.slideUp(300,function() {});
}
});
});
$('a.approve').click(function(e) {
e.preventDefault();
var parent = $(this).closest("tr");
$.ajax({
type: 'get',
url: 'index.php',
data: 'ajax=1&approve='+ parent.attr('id').replace('record-','')+'&employee='+ parent.attr('title')+'&acyear=' + parent.attr('lang'),
beforeSend: function() {
parent.animate({'backgroundColor':'#fb6c6c'},300);
},
success: function() {
parent.slideUp(300,function() {});
var $adwpTable = $("#department_waiting_approval_table_a").dataTable( { bRetrieve : true } );
$adwpTable.fnDraw();
}
});
});
编辑 - 添加了更多信息
if(isset($_GET['approve']) && isset($_GET['employee']) && isset($_GET['acyear'])) {
$result = mysql_query('UPDATE requests SET approved = 1 WHERE id = '.$_GET['approve'].'');
$result2 = mysql_query('UPDATE holiday_entitlement_business_manual
SET days_left = new_entitlement- IFNULL((SELECT sum(days)
FROM requests where user='.$_GET['employee'].' AND academic_year='.$_GET['acyear'].' AND approved=1),0)
WHERE userid='.$_GET['employee'].' AND academic_year='.$_GET['acyear'].'');
}
if(isset($_GET['deny'])) {
$result = mysql_query('UPDATE requests SET denied = 1 WHERE id = '.$_GET['deny'].'');
}