表单序列化为对象

function serializeObject(form) {
				var o = {};
				$.each(form.serializeArray(), function(index) {
					if(o[this['name']]) {
						o[this['name']] = o[this['name']] + ";" + this['value'];
					} else {
						o[this['name']] = this['value'];
					}
				});
				return o;
			}

  

posted @ 2016-10-11 14:53  李大白程序员  阅读(351)  评论(0编辑  收藏  举报