gpt4 book ai didi

php - jquery POST方法回调函数查询

转载 作者:行者123 更新时间:2023-11-28 02:58:20 24 4
gpt4 key购买 nike

$("#submit_js").click(function() {
var commentmsg = $('#comment').val();
$.post(
"user_submit.php",
{comment: $("#comment").val(), aid: imgnum, uid:$("#uid").val()},
function(data){
/*alert(data);*/
//$('#greetings').html('Your choice was submitted successfully. Thank You for voting.');
$('#confirm_msg').addClass("on");
$('#care_parent').addClass("off");
$('#fb_user_msg').html(commentmsg);
//$('#fb_user_msg').html( commentmsg );
});
});

上面是我的jquery POST函数。在回调函数中我正在做一些 html 的事情。这是成功的 POST 版本。这意味着,当 POST 过程完成或添加到数据库时。现在在我的 user_Submit.php 中,我正在检查以验证是否应该将数据添加到数据库中。

可以修改回调函数,以便如果我不添加到 user_Submit.php 中的数据库,我应该向用户显示一些其他消息...

我真正想问的是,如何让PHP向JS传递0/1值?有人可以帮忙吗?

最佳答案

在您的user_submit.php中,如果成功则回显 1,如果失败则回显 0。该变量将在 data 参数中返回到处理函数。然后只需执行一个简单的 if/else 即可查看值是什么。

关于php - jquery POST方法回调函数查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1992972/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com