码迷,mamicode.com
首页 > Web开发 > 详细

form表单数据进行json转换

时间:2017-12-24 14:44:06      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:var   gif   ejs   orm   val   array   ret   name   转换   

              $.fn.serializeJson = function() {
				var o = {};
				var a = this.serializeArray();
				$.each(a, function() {
					if(o[this.name]) {
						if(!o[this.name].push) {
							o[this.name] = [o[this.name]];
						}
						o[this.name].push(this.value || ‘‘);
					} else {
						o[this.name] = this.value || ‘‘;
					}
				});
				return o;
			};

  在javascript中添加该方法

使用该方法就可以进行转换

    var jso = $("#表单名(form的id属性)").serializeJson();

json对象转换String

    JSON.stringify(lf)

form表单数据进行json转换

标签:var   gif   ejs   orm   val   array   ret   name   转换   

原文地址:http://www.cnblogs.com/fjkgrbk/p/form_json.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!