您好,登錄后才能下訂單哦!
jQuery中的序列化有兩種:
1.對(duì)表單進(jìn)行序列化
序列表表格內(nèi)容為字符串,用于 Ajax 請(qǐng)求。
$("#searchForm").serialize();
2.對(duì)數(shù)組進(jìn)行序列化
將表單元素?cái)?shù)組或者對(duì)象序列化。是.serialize()的核心方法。注意此方法需在較高版本的jquery版本中使用
$.param(arr)
3.測(cè)試代碼
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <header> <title>Jquery測(cè)試</title> <script type="text/javascript" src="./jquery/jquery.min.js"></script> </header> <body> <form id="searchForm"> <input type="text" id="abc1" name="abc1" value="var1"/>輸入框1 <input type="text" id="abc2" name="abc2" value="var2"/>輸入框2 <input type="text" id="abc3" name="abc3" value="var3"/>輸入框3 <br/><br/> <span id="show1"></span> <br/> <span id="show2"></span> </form> </body> </html> <script type="text/javascript"> $(document).ready(function () { var serialize = $("#searchForm").serialize(); var arr = {a:1,b:2}; $("#show1").html("serialize對(duì)表單進(jìn)行序列化"+serialize); $("#show2").html("param對(duì)數(shù)組進(jìn)行序列化"+$.param(arr)); }); </script>
運(yùn)行結(jié)果:
以上兩種方法為我們?cè)谶M(jìn)行ajax請(qǐng)求時(shí)參數(shù)的封裝提供了便利
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。