加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ajax提交form的方法

发布时间:2020-12-16 02:04:40 所属栏目:百科 来源:网络整理
导读:在这里总结两种方法,第一种是将form序列化之后作为参数提交,第二种是调用ajaxSubmit方法提交。直接贴代码了: form表单的写法: form id="testForm" name="testForm" method="post" action="testForm/addTestForm.do" input class="ipt w400" id="" name="

在这里总结两种方法,第一种是将form序列化之后作为参数提交,第二种是调用ajaxSubmit方法提交。直接贴代码了:

form表单的写法:

<form id="testForm" name="testForm" method="post" action="testForm/addTestForm.do">
<input class="ipt w400" id="" name="name" type="text" />
</form>

第一种提交的方法:

$.ajax({
cache: true,
type: "POST",
url:'testForm/addTestForm.do',
data:$('#testForm').serialize(),// 你的formid
async: false,
error: function(request) {
alert("Connection error");
},
success: function(data) {
alert("成功了");
}
});

第二种提交的方法:

$('#testForm').ajaxSubmit(function(result){ var resJson = $.parseJSON(result); if(resJson.success){ alert(resJson.msg); }else{ alert(resJson.msg); } });

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读