摘要: js封装from表单数据为json串进行ajax提交
json封装代码
function getFormJson(frm) { //frm:form表单的id
var o = {};
var a = $("#"+frm).serializeArray();
$.each(a, function() {
if (o[this.name] !== undefined) {
if (!o[this.name].push) {
o[this.name] = [ o[this.name] ];
}