奇怪的事发生在我身上。我通过表单运行post请求,并希望得到字符串"Dobře"
的PHP数据结果,这似乎是正确的,因为我可以提醒这个字符串。但是,在下一行我有条件,应检查数据变量(来自回调)是否真的包含此字符串Dobře。这种比较永远不会正确。所以我无法与alert("gotcha")
保持一致。有什么提示吗?
$.post("submit.php", {
name1: name,
email1: email,
message1: message,
contact1: contact,
subject1: subject
}, function(data) {
$("#returnmessage").append(data); // Append returned message to message paragraph. NOT WORKIN FZUXK
alert(data); // This writes "Dobře"
if (data.length == 5 || data == "Dobře") {
alert("gotcha");
$("#form")[0].reset(); // To reset form fields on success.
}
});