我正在使用 ajax 更新数据库并使用下面的代码,问题是我无法在 $.post 方法中设置 newValue。这个值定义。
$('#sabt_mored1').live('click', function() {
$edit=false;
var newVal=false;
$(this).parent().siblings('td').find('#cd_e0').hide();
$.post("actions.php", {id_sal: id_sal, sal:sal1 , postaction:'virayeshe_sal'},
function(data){
if(data.success) {
newVal=true;
}
else{
newVal=false;
}
},'json');
alert(newVal);
return false;
});
使用警报后我得到错误但我必须得到,$.post 返回 data.success