jquery ajax提交表单(序列化表单 serialize)

将表单序列化

$('#yourformid').serialize()


将表单序列化后,提交

$.ajax({
                cache: true,//布尔值,表示浏览器是否缓存被请求页面。默认是 true。
                type: "POST",//请求类型
                url:ajaxCallUrl,
                data:$('#yourformid').serialize(),// 你的formid
                async: true,//是否异步处理,默认是true
                dataType:"json",//预设服务器返回来的数据类型
                error: function(request) {
                    alert("Connection error");
                },
                success: function(data) {
                    //成功时处理的代码
                }
            });



原文出处:http://malaoshi.top/show_1C7GpInLdc1.html