jquery将form表单序列化常json

var formData = {};
$.each(form.serializeArray(),function(i, item){
formData[item.name] = item.value;
});

 

$.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);
}
});

posted @ 2014-07-01 19:13  程序员X  阅读(201)  评论(0编辑  收藏  举报