码迷,mamicode.com
首页 > 其他好文 > 详细

表单提交 事件

时间:2017-08-25 12:18:20      阅读:513      评论:0      收藏:0      [点我收藏+]

标签:script   方法   blank   href   onlayout   comment   connect   rand   csdn   

来源:http://blog.csdn.net/tolcf/article/details/41151195

在项目开发中,有时提交form表单时不能只使用action或者jQuery



表单提交方法有三种,主要说下第三种
第一种:用 form 自带属性action 提交
第二种:用 jquery 提交:$("#formid").submit();
第三种:用 ajax 提交:
但如果form表单中数据很多时,不可能一一列出,只需要用
$(‘#yourformid‘).serialize()就可以了

举例如下:

$.ajax({
	cache: true,
	type: "POST",
	url:  ajaxCallUrl,
	data: $(‘#yourformid‘).serialize(),// 你的formid
	async: false,
	error: function(request) {
		alert("Connection error");
	},
	success: function(data) {
		$("#commonLayout_appcreshi").parent().html(data);	}
});

表单提交 事件

标签:script   方法   blank   href   onlayout   comment   connect   rand   csdn   

原文地址:http://www.cnblogs.com/qq735675958/p/7426934.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
分享档案
周排行
mamicode.com排行更多图片
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!