是否可以从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>
}
});
尽管这不会起作用...... 工作就像一个魅力!