jquery将表单序列化为json对象

// 将指定表单序列化为对象
	serialize2Object : function(id) {
		id="#"+id;
		var o = {};
		$.each($(id).serializeArray(), function(index) {
			if (o[this['name']]) {
				o[this['name']] = o[this['name']] + "," + this['value'];
			} else {
				o[this['name']] = this['value'];
			}
		});
		return o;
	},

 

你可能感兴趣的:(jquery)