我需要你的帮助。
我编写了一个代码,该代码使用 ajax jquery 在表中动态创建新行。
var nouvelle_ligne = $('<tr><td class="thtime">'+hours+'h'+minutes+'</td><td>Modification de l\'équipe de Quart : <b class="textepersocdq">'+chefdequart+'</b> prend la fonction de Chef de Quart et <b class="textepersoadj">'+adjoint+'</b> prend celle d\'adjoint.</td><td class="button"><button class="editperso"><i class="icon-pencil"></i></button></td><td class="button"><button class="trashperso"><i class="icon-trash"></i></button></td></tr>').fadeIn('fast');
$('#tablemc').append(nouvelle_ligne);
在这个新行中,我有一个按钮可以使用 x-editable 库进行编辑。
$(document).on("click", ".editperso", function(g){
g.stopPropagation();
var $CellParent = $(this).closest('td').prev().children('b');
editperso2($CellParent); });
function editperso2(bCellToEdit) {
bCellToEdit.editable({
mode: 'inline',
inputclass: 'input-medium texteperso',
type: 'text',
success: function() {
var cmsperso = $('.textepersocms').next('span').children('div').children('form').children('div').children('div').children('div').children('input.texteperso').val();
var chefdequart = $('.textepersocdq').next('span').children('div').children('form').children('div').children('div').children('div').children('input.texteperso').val();
var adjoint = $('.textepersoadj').next('span').children('div').children('form').children('div').children('div').children('div').children('input.texteperso').val();
var cmsperso2 = $(this).closest('td').children('.textepersocms').html();
var chefdequart2 = $(this).closest('td').children('.textepersocdq').html();
var adjoint2 = $(this).closest('td').children('.textepersoadj').html();
console.log(cmsperso);
console.log(chefdequart);
console.log(adjoint);
console.log(cmsperso2);
console.log(chefdequart2);
console.log(adjoint2);
$.ajax({
type: "POST",
url: "form/update/updateperso.php",
async: false,
data: { cmsperso: cmsperso, cmsperso2: cmsperso2, chefdequart: chefdequart, chefdequart2: chefdequart2, adjoint: adjoint, adjoint2: adjoint2 }
});
}
});}
此代码将输入转换为变量(adjoint、chefdequart 和 cmsperso 是新值,adjoint2、chefdequart2 和 cmsperso2 是更改前的值)。
最后我有更新 mysql 表的 php 文件,但它不起作用。
elseif (empty($_POST['cmsperso']) && !empty($_POST['chefdequart']) && !empty($_POST['adjoint'])) {
if (isset($_POST['chefdequart']) && isset($_POST['chefdequart2']) && isset($_POST['adjoint']) && isset($_POST['adjoint2'])) {
$chefdequart = $_POST['chefdequart'];
$chefdequart2 = $_POST['chefdequart2'];
$adjoint = $_POST['adjoint'];
$adjoint2 = $_POST['adjoint2'];
$pos1 = strcasecmp($adjoint, $adjoint2);
$pos2 = strcasecmp($chefdequart, $chefdequart2);
if ($pos1===0 && $pos2!==0) {
$updateperso4 = "UPDATE `Operations` SET `chefdequart`=\"$chefdequart\" WHERE `cmsperso`='' AND `chefdequart`=\"$chefdequart2\" AND `adjoint`=\"$adjoint2\"";
if($updateperso4) {
echo json_encode(array("status"=>"ok"));
}
else {
echo json_encode(array("status"=>"error", "error"=>"une erreur est survenue..."));
}
mysql_query($updateperso4, $cnx) or die(mysql_error());
mysql_close();
}
elseif ($pos1!==0 && $pos2===0) {
$updateperso5 = "UPDATE `Operations n°` SET `adjoint`=\"$adjoint\" WHERE `cmsperso`='' AND `chefdequart`=\"$chefdequart2\" AND `adjoint`=\"$adjoint2\"";
if($updateperso5) {
echo json_encode(array("status"=>"ok"));
}
else {
echo json_encode(array("status"=>"error", "error"=>"une erreur est survenue..."));
}
mysql_query($updateperso5, $cnx) or die(mysql_error());
mysql_close();
}
else {
echo "Ouppsss !";
}
}
}
当我将更新之一放入 phpmyadmin 时,更新工作并且值会改变,但在我的代码中,值不会改变。
当我在插入chefdequart和adjoint后尝试chefdequart时,萤火虫没有返回错误,并且:
和数据在视觉上发生变化,但 phpmyadmin 没有变化。
我希望你能理解我。谢谢大家。