欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS中from 表单序列化提交的代码

程序员文章站 2023-11-03 12:44:40
废话不多说了,直接给大家贴代码了,具体代码如下所示: // ----ajax begin $.ajax({ type: "post", url:...

废话不多说了,直接给大家贴代码了,具体代码如下所示:

// ----ajax begin
  $.ajax({
type: "post",
   url: "../comprule/updaterulebyid?tids="+comptablename_val+"&isreportname="+$('#isreport_update').val()+"&heji_add="+$('#heji_update').val(),
   async:false,
   data:$("#update_form1").serialize(),
   datatype: "text",
   success: function(data){
   $("#search").click();
   $.success("操作成功");
   settimeout(function(){
layer.closeall();
},1000);  
   },
  error : function(data){
  $.fail('操作失败!');
  }
 });
 //----ajax end

用ajax提交到后台,要是用序列化接收不到相应的值,或值是null,就把值拼到url上

以上所述是小编给大家介绍的js中from 表单序列化提交的代码,希望对大家有所帮助