1

我可以通过直接发布到不同的控制器/操作来做到这一点。Say I had a list of orders and when select an order I get the order in edit mode, how would I do this with jquery(ie no post backs etc all on the one page) and post the edit and return to the list. 我仍想使用数据注释等进行验证。干杯。

4

1 回答 1

0

我假设您使用的是 Spring MVC。我通过使用该函数并使用jQuery Form Plugin$.ajax()序列化 Spring-bound 表单来实现这一点。请参见下面的示例:

<div id="container"></div>在 Spring MVC 表单周围创建一个容器。

    $.ajax({
        type: 'POST',
        url: actionUrl,
        data: $('#id_of_your_form_tag').serialize(),
        success: function(data) {
            $('#container').html(data);
        },
        async: false
    });
于 2012-12-28T17:07:06.747 回答