js表单提交到后台对象接收

Posted 北骁蚁

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js表单提交到后台对象接收相关的知识,希望对你有一定的参考价值。

$.extend({
StandardPost:function(url,args){
var form = $("<form method=‘post‘ target=‘_blank‘></form>"),
input;
form.attr({"action":url});
$.each(args,function(key,value){
input = $("<input type=‘hidden‘>");
input.attr({"name":key});
input.val(value);
form.append(input);
});
form.appendTo(‘body‘).submit().remove();
}
});

 

下单点击按钮触发事件:
$("#btn_test").click(function () {
var data = {
maxQuotationNo:"",
maxPrice:,
salePrice:10000.00,
dealerId:,
buyerId:
};
$.StandardPost(‘http://***/***/**/toDisposePage‘, data);
});

后台取值:post 对象接收
@RequestMapping(value = "/printAgreement", method = RequestMethod.POST)
public ModelAndView printAgreement(ModelAndView modelAndView, ReceiptInstallmentVO vo ) {































以上是关于js表单提交到后台对象接收的主要内容,如果未能解决你的问题,请参考以下文章

关于表单提交 用PHP后台接收值时报错

AJAX表单提交以及数据接收

表单同时提交多条记录的技术实现

后台传回的Json数据怎么在HTML表单中显示并能动态编辑(添加、删除)

表单数据批量提交,后台批量接收并保存

js通过生成临时表单再删除的方式向后台提交数据(模拟ajax的post提交但还要跳转页面不返回数据)