gpt4 book ai didi

javascript - jQuery 发布数据返回比较不起作用

转载 作者:行者123 更新时间:2023-11-28 21:03:39 25 4
gpt4 key购买 nike

我有这段代码:

function addEmail() {
email = $("#email").val();
atime = $("select#time").val();
tid = <?= $tid; ?>;
$.post("remindme.php", { email: email, time: atime, tid: tid },
function(data) {
if (data == "x") {
alert(data);
$('#remindme').modal('hide');
$('#quota').show();
}
else {
alert(data);
$('#remindme').modal('hide');
$('#remindersuccess').show();
}
});
}

remindme.php 如果出现问题,会回显“x”。

我正在尝试比较 Rememberme.php 的输出,但即使它回显 x,条件 data == "x" 也不起作用。

我添加了alert(data),我可以看到它在需要时正确显示x..

最佳答案

如果服务器回显 x 字符串,则成功回调中的 if (data == 'x') 测试应该可以工作。您的问题出在其他地方。

关于javascript - jQuery 发布数据返回比较不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10402626/

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