我正在使用此代码并收到警报消息:“表单保存失败,请联系您的管理员”
我试图了解错误的原因。我不是创建代码的人,我只是出于教育目的尝试:。
我已经测试了我的数据库连接并且它运行良好。我还确定在我点击提交按钮之前表单字段已正确且完整地填写。
你能告诉我可能的原因吗?
这是我在我们网站上上传的表格的链接: http ://www.ssagroup.com/_form/aj.html
$("document").ready(function() {
$("#personal_details").submit(function() {
processDetails();
return false;
});
});
function processDetails() {
var errors = '';
// Validate name
var name = $("#personal_details [name='name']").val();
if (!name) {
errors += ' - Please enter a name\n';
}
// Validate age range
var age_range = $("#personal_details [name='age_range']").val();
if (!age_range) {
errors += ' - Please select and age range\n';
}
// Validate sports selection
var sports = $("#personal_details [name='sports[]']:checked").length;
if (!sports) {
errors += ' - Please select your favourite sports\n';
}
if (errors) {
errors = 'The following errors occurred:\n' + errors;
alert(errors);
return false;
} else {
// Submit our form via Ajax and then reset the form
$("#personal_details").ajaxSubmit({success:showResult});
return false;
}
}
function showResult(data) {
if (data == 'save_failed') {
alert('Form save failed, please contact your administrator');
return false;
} else {
$("#personal_details").clearForm().clearFields().resetForm();
alert('Form save success');
return false;
}
}