jQuery 步提交表单 -> 步骤变为红色

jQuery steps submit form -> step turns red

提交表单后,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
                            }
                        });
                 }

我在这里有点困惑。

jQuery steps 认为提交失败,因为事件中缺少 return=true 语句。