从ajax响应中提交表单数据

时间:2014-10-20 20:38:37

标签: ajax form-submit

是否可以从ajax响应数据中提交表单?

$.ajax(
{
    url : formURL,
    type: "POST",
    dataType: "json",
    data : postData,
    success:function(response) 
    {
        response.form_data.submit();
        //submit "response.form_data" will be <form>...</form>
    }
});

尽管这不会起作用...... 工作就像一个魅力!

0 个答案:

没有答案