ajax提交整个form

前端之家收集整理的这篇文章主要介绍了ajax提交整个form前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$("#savebutton").click(function(){

$.ajax({
type:"post",
url:"<%=request.getContextPath()%>/createProfile.action",
data:$("#profileForm").serialize(), dataType:"text",success:function(data){ var jsonObj=eval(data); if (jsonObj[0].returnCode=="4040411000") { alert("yong hu ming yi jing cun zai"); return false; } if (jsonObj[0].returnCode=="0000000000") { alert("add success"); selectAllprofile(); } } }) }) 原文链接:https://www.f2er.com/ajax/164575.html

猜你在找的Ajax相关文章