提交表单后,jQuery步骤似乎认为提交失败了。最后一步变成红色。 我没有找到关于这个主题的任何文档。 插件是否期望来自服务器的特定响应(类型)?
onFinishing: function() {
debugger;
var formData = $("#wizardSumbit").serialize();
$.ajax({
type: "POST",
url: '@Url.Action("Wizard_Submit", "Wizard")', //serverside
data: formData,
beforeSend: function () {
//show loading image
},
success: function (result) {
console.log(result); //use this to see the response from serverside
},
error: function (e) {
console.log(e); //use this to see an error in ajax request
}
});
}
我在这里有点困惑。
答案 0 :(得分:0)
return=true
声明,{{1}}正在考虑将提交视为失败。