-1

Ive serialized a form using jquery:

$(document).on("click", "#btnsubmit", function () {
$.ajax({
    url: "/Home/RiskScore",
    type: "post",
    data: $("form").serialize(),
    success: function (result) {
        $('.content-wrap').html(result);
    }
});

});

And i want to deserialize this and populate the form on the next page. How can i do this?

4

1 に答える 1