$("#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