form表单数据进行json转换

Posted fjk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了form表单数据进行json转换相关的知识,希望对你有一定的参考价值。

              $.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转换的主要内容,如果未能解决你的问题,请参考以下文章

前端页面中form表单数据转换json数据

将表单数据转换为json代码分享

form表单转换为Json字符串数据

将表单数据转换为 JSON 对象 [重复]

Google Closure - 将数据表单数据转换为 json 对象

将 json 对象转换为表单序列化数据