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表单提交到后台对象接收的主要内容,如果未能解决你的问题,请参考以下文章