我有这段代码:
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”。
我正在尝试比较remindme.php 的输出,但即使它回显是x,条件data == "x"
也不起作用。
我添加了alert(data)
,我可以看到它x
在需要时正确显示..