好吧,所以我已经尝试了几乎所有东西.
$.post("include/ajax.PHP", { type: "workbookNumber", wbn: $("input[name='wbn']").val() }, function(data) {
error.push("<li>"+data+"</li>");
alert(data);
});
error.push是已创建的错误数组,它可以完美运行,但完全不会添加到该数组中.好像那行代码不存在.逗号变量数据中有一些实例,其中有多余的逗号表示存在,但即使这样,< li< / li>应该仍然显示.
jQuery.ajax({
type: "POST",
url: "include/ajax.PHP",
dataType:"html",
data: { type: "workbookNumber", wbn: $("input[name='wbn']").val() },
success:function(response) {
alert(response);
},
error:function (xhr, ajaxOptions, thrownError) {
alert("damn. -_-");
alert(xhr.status);
alert(thrownError);
}
});
我对此没有任何合理的解释,我认为PHP在搜索包含20000多个代码的数据库时没有足够的时间显示结果,但是结果仍然通过警报返回,只是而不是通过可以在屏幕上显示的实际文本中的错误数组.
错误数组可以正常工作,只是此功能不起作用.以下是一些其他示例,这些示例可以正常工作:
if($("input[name='fname']").val() == "") {
error.push("<li>The first name field is blank</li>");
}
if($("input[name='lname']").val() == "") {
error.push("<li>The last name field is blank</li>");
}
if($("select[name='usertype']").val() == 0) {
if($("input[name='vcode']").val() == "") {
error.push("<li>The voucher code field is blank</li>");
} else {
$.post("include/ajax.PHP", { type: "findVoucher", vcode: $("input[name='vcode']").val() }, function(data) {
if(data == "none") {
error.push("<li>The voucher code does not exist</li>");
}
});
}
}
这是整个代码:
$(document).ready(function() {
$("#sit_date").datepicker();
$("select[name='usertype']").change(function() {
if($(this).val()=="0") {
$(".indv").slideUp(500);
$(".comp").slideDown(500);
} else {
$(".indv").slideDown(500);
$(".comp").slideUp(500);
}
});
$("input[name='marka'],input[name='markb']").bind("keypress paste keyup blur focus", function() {
var marka = $("input[name='marka']").val();
var markb = $("input[name='markb']").val();
var perc = (marka/markb)*100;
if(perc>0 && perc<=100) {
$("#per").html(Math.round(perc));
} else {
$("#per").html("");
}
});
$("input[name='vcode']").bind("keypress keyup paste blur focus", function() {
$.post("include/ajax.PHP", { type: "checkVoucher", vcode: $(this).val() }, function(data) {
$("input[name='group']").val(data);
});
$.post("include/ajax.PHP", { type: "checkType", vcode: $(this).val() }, function(data) {
$("input[name='certificates']").val(data);
});
});
$("input[name='wbn']").bind("keypress keyup paste blur focus", function() {
$.post("include/ajax.PHP", { type: "getAssessment", wbn: $(this).val() }, function(data) {
if(data!="") {
$("select[name='assessment']").html(data);
}
});
});
/*
//turn into function
$(document).keyup(function(event){
if(event.keyCode == 13){
alert("works");
$("input[name='manual_add']").click();
}
});
*/
var error = [];
$("input[name='manual_add']").click(function() {
if($("input[name='fname']").val() == "") {
error.push("<li>The first name field is blank</li>");
}
if($("input[name='lname']").val() == "") {
error.push("<li>The last name field is blank</li>");
}
if($("select[name='usertype']").val() == 0) {
if($("input[name='vcode']").val() == "") {
error.push("<li>The voucher code field is blank</li>");
} else {
$.post("include/ajax.PHP", { type: "findVoucher", vcode: $("input[name='vcode']").val() }, function(data) {
if(data == "none") {
error.push("<li>The voucher code does not exist</li>");
}
});
}
}
if($("input[name='wbn']").val() == "") {
error.push("<li>The workbook number field is blank</li>");
} else {
$.post("include/ajax.PHP", { type: "workbookNumber", wbn: $("input[name='wbn']").val() }, function(data) {
error.push("<li>"+data+"</li>");
//this is the only thing that works correctly:
alert(data);
});
}
if(($("input[name='questions']").val() == "") && ($("input[name='marka']").val() != $("input[name='markb']").val())) {
error.push("<li>The questions wrong field is blank</li>");
}
var list = "";
$.each(error, function(i,val) {
list += val;
});
if(error.length>0) {
$(".error").slideUp(500);
$(".jquery-error ul").html("").append(list);
$(".jquery-error").slideDown(500);
} else {
$("form").submit();
}
});
});
解决方法:
var错误是在click()函数中声明的,因此无法在该函数外部访问.全局声明它,您的代码应该可以工作. (在我使用全局错误变量的jsfiddle上,我工作得很好.)
您的其余错误处理代码可以正常工作,因为它在与错误变量(click()函数)相同的作用域中定义.但是,对ajax请求的回调不是在函数的上下文中执行,而是在窗口上下文中执行.这绝对是一个范围问题.
当然,您必须等待服务器的响应回来以更新错误通知.编写一个遍历错误数组并显示相应通知的函数,然后从AJAX调用的错误函数中调用该函数.
请尝试以下操作:
var error = [];
jQuery.ajax({
type: "POST",
url: "include/ajax.PHP",
dataType:"html",
data: { type: "workbookNumber", wbn: $("input[name='wbn']").val() },
success:function(response) {
alert(response);
},
error:function (xhr, ajaxOptions, thrownError) {
error.push("<li>"+thrownError+"</li>");
showErrors();
}
});
function showErrors () {
var list = "";
$.each(error, function(i,val) {
list += val;
});
if(error.length>0) {
$(".error").slideUp(500);
$(".jquery-error ul").html("").append(list);
$(".jquery-error").slideDown(500);
} else {
$("form").submit();
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。