jQuery的serialize()序列化简单介绍:
在jQuery中,当使用ajax时,常常需要拼装input数据以键值对(Key/Value)的形式发送到服务器。
serialize方法可以轻松的完成这个工作,使用这个方法可以将表单序列化为键值对(key1=value1&key2=value2)后提交。
下面介绍JQuery中serialize()的用法:
一.serialize()定义和用法:
serialize()方法通过序列化表单值,创建标准的URL编码文本字符串,它的操作对象是代表表单元素集合的jQuery 对象。
可以选择一个或多个表单元素(比如input或文本框),或者form元素本身。
序列化的值可在生成 AJAX 请求时用于 URL 查询字符串中。语法结构:
$(selector).serialize()
详细说明:
(1).serialize()方法创建以标准URL编码表示的文本字符串。它的操作对象是代表表单元素集合的jQuery对象。
(2).serialize()方法可以操作已选取个别表单元素的 jQuery 对象,比如<input>, <textarea>以及<select>。不过,选择<form>标签本身进行序列化一般更容易些。
(3).只会将”成功的控件“序列化为字符串。如果不使用按钮来提交表单,则不对提交按钮的值序列化。如果要表单元素的值包含到序列字符串中,元素必须使用 name 属性。
(4).form里面的name不能够用 Js、jquery里的关键字。
例如length:
<form id="form1"> <input name="length" type="text" value="pipi" /> <input name="blog" type="text" value="blue submarine" /> </form> //使用:$("#form1").serialize();
上面则获取不到值。
二.jQuery中serialize()实例:
(1).ajax serialize():
$.ajax({ type: "POST", dataType: "json", url:ajaxCallBack, data:$(‘#myForm‘).serialize(),// 要提交表单的ID success: function(msg){ alert(msg); } });
(2).serialize() 序列化表单实例:
<script src="jquery-1.7.min。js"></script> <script> $(function(){ $("#submit").click(function(){ alert($("#myForm").serialize()); }); }); </script> <form id="myForm"> 昵称 <input type="text" name="username" value="admin" /><br /> 密码 <input type="password" name="password" value="admin123" /><br /> <input type="button" id="submit" value="序列化表单" /> </form>
点击按钮之后弹出:
username=admin&password=admin123
三.serialize是用param方法对serializeArray的一个简单包装:
1.$.param():$.param()方法是serialize()方法的核心,用来对一个数组或对象按照keyalue进行序列化
param方法的js代码:
param: function( a ) { /// <summary> /// This method is internal. Use serialize() instead. /// </summary> /// <param name="a" type="Map">A map of key/value pairs to serialize into a string.</param>‘ /// <returns type="String" /> /// <private /> var s = [ ]; function add( key, value ){ s[ s.length ] = encodeURIComponent(key) + ‘=‘ + encodeURIComponent(value); }; // If an array was passed in, assume that it is an array // of form elements if ( jQuery.isArray(a) || a.jquery ) // Serialize the form elements jQuery.each( a, function(){ add( this.name, this.value ); }); // Otherwise, assume that it‘s an object of key/value pairs else // Serialize the key/values for ( var j in a ) // If the value is an array then the key names need to be repeated if ( jQuery.isArray(a[j]) ) jQuery.each( a[j], function(){ add( j, this ); }); else add( j, jQuery.isFunction(a[j]) ? a[j]() : a[j] ); // Return the resulting serialization return s.join("&").replace(/%20/g, "+"); }
例如:
var obj = {a:1,b:2,c:3}; var k = $.param(obj); alert(k); //输出a=1&b=2&c=3
(2).serializeArray:
serializeArray方法是将一个表单当中的各个字段序列化成一个数组
serializeArray方法的jquery定义:
serializeArray: function() { /// <summary> /// Serializes all forms and form elements but returns a JSON data structure. /// </summary> /// <returns type="String">A JSON data structure representing the serialized items.</returns> return this.map(function(){ return this.elements ? jQuery.makeArray(this.elements) : this; }) .filter(function(){ return this.name && !this.disabled && (this.checked || /select|textarea/i.test(this.nodeName) || /text|hidden|password|search/i.test(this.type)); }) .map(function(i, elem){ var val = jQuery(this).val(); return val == null ? null : jQuery.isArray(val) ? jQuery.map( val, function(val, i){ return {name: elem.name, value: val}; }) : {name: elem.name, value: val}; }).get(); }
serializeArray数据例子:
[ { name : username, value : 中国 }, { name : password, value : xxx }]
原文地址是:http://www.51texiao.cn/jqueryjiaocheng/2015/0525/2461.html
最原始地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=17200