通过ajax提交form表单

前端之家收集整理的这篇文章主要介绍了通过ajax提交form表单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

$.ajax({   url : 'deliveryWarrant/update.do',  data : $('#myform').serialize(),  type : "POST",  success : function(data) {     var res = eval('(' + data + ')');     if (res && res.success == true) {       alert(res.message);     location.href="/godownWarrant/findToDeliveryWarrant.do?godownWarrant.code="+$("#myform input[name=godownWarrant\\.code]").val();     } else {       alert(res.message);     }   } });

原文链接:https://www.f2er.com/ajax/165223.html

猜你在找的Ajax相关文章