我有一个带有 4 个标题/部分的手风琴,每个部分都有一个表格。我需要将每个表单提交到服务器并给出回调,以及验证,然后用户才能继续流程的下一步。我有验证工作 - 我只是使用默认设置。现在如何为每个提交的表单获取回调?我知道我需要分配每个下一步按钮来提交,但我不知道如何使用这个脚本来做到这一点,因为这个脚本是为一个表单的单个提交而设计的。
我也不允许使用 PHP,因为它不是我们在这里使用的东西。我们使用 JSP 进行数据调用,因此请不要使用 PHP 响应。谢谢你。
我的验证脚本:
$(document).ready(function(){
// add * to required field labels
$('label.form-field-label-required').append(' <strong>*</strong>');
// accordion functions
var accordion = $("#accordion").accordion();
var current = 0;
$.validator.addMethod("pageRequired", function(value, element) {
var $element = $(element)
function match(index) {
return current == index && $(element).parents("#accordion").length;
}
if (match(0) || match(1) || match(2)) {
return !this.optional(element);
}
return "dependency-mismatch";
}, $.validator.messages.required)
var v = $("#cmaForm").validate({
errorClass: "warning",
onkeyup: false,
onblur: false,
submitHandler: function() {
alert("Submitted, thanks!");
}
});
// back buttons do not need to run validation
$(".prevbutton").click(function(){
accordion.accordion("activate", 0);
current = 0;
});
$(".prevbutton").click(function(){
accordion.accordion("activate", 1);
current = 1;
});
// these buttons all run the validation, overridden by specific targets above
$(".open2").click(function() {
if (v.form()) {
accordion.accordion("activate", 2);
current = 2;
}
});
$(".open1").click(function() {
if (v.form()) {
accordion.accordion("activate", 1);
current = 1;
}
});
$(".open0").click(function() {
if (v.form()) {
accordion.accordion("activate", 0);
current = 0;
}
});
});
我的表单提交脚本:(我不知道表单提交脚本的格式是怎么回事,但它不应该是这样的)
$(document).ready(function() {
var options = {
target: '#output2', // target element(s) to be updated with server response
beforeSubmit: showRequest, // pre-submit callback
success: showResponse, // post-submit callback
clearForm: true // clear all form fields after successful submit
};
$('#cmaForm').submit(function() {
$(this).ajaxSubmit(options);
return false;
});
});
函数 showRequest(formData, jqForm, options) { var queryString = $.param(formData);
alert('About to submit: \n\n' + queryString);
return true;
}
函数 showResponse(responseText, statusText, xhr, $form) {
alert('status: ' + statusText + '\n\nresponseText: \n' + responseText +
'\n\nThe output div should have already been updated with the responseText.');
}