Excel自動填充123456不成功的原因分析
1184
2023-11-15
本文實例講述了jQuery中serializeArray()與serialize()的區別。分享給大家供大家參考,具體如下:
serialize()序列化表單元素為字符串,用于 Ajax 請求。
serializeArray()序列化表單元素為JSON數據。
具體實例如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="application/javascript" src="http://www.gimoo.net/t/1904/jquery-1.10.2.js"></script> <title>serializeArray()與serialize()</title> <script type="text/javascript"> function onClik(){ $("#results").html("serializeArray()與serialize()的區別如下:"); var data1 = $("#form1").serializeArray(); //自動將form表單封裝成json $("#results").append("<br/><b>serializeArray:</b>"); $.each(data1, function(i, field){ $("#results").append(field.name+":"+field.value+" "); }); $("#results").append("<br/>"); var data2 = $("#form1").serialize(); //自動將form表單封裝成json $("#results").append("<b>serialize():</b>"+data2); } </script> </head> <body> <form id="form1" name="form1" method="post" action=""> <p>進貨人 : <label for="name"></label> <input type="text" name="name" id="name" /> </p> <p>性別: <label for="sex"></label> <select name="sex" size="1" id="sex"> <option value="男">男</option> <option value="女">女</option> </select> </p> <table width="708" border="1"> <tr> <td width="185">商品名</td> <td width="205">商品數量</td> <td width="296">商品價格</td> </tr> <tr> <td><label for="pro_name"></label> <input type="text" name="pro_name" id="pro_name" /></td> <td><label for="pro_num"></label> <input type="text" name="pro_num" id="pro_num" /></td> <td><label for="pro_price"></label> <input type="text" name="pro_price" id="pro_price" /></td> </tr> <tr> <td><input type="text" name="pro_name2" id="pro_name2" /></td> <td><input type="text" name="pro_num2" id="pro_num2" /></td> <td><input type="text" name="pro_price2" id="pro_price2" /></td> </tr> </table> <p id="results"></p> <input type="button" name="submit" onclick="onClik();" value="提交"/> </form> </body> </html>
結果如下:
備注:file、image、button、submit、reset都不會被序列化
希望本文所述對大家jQuery程序設計有所幫助。
#免責聲明#
本站[綠夏技術導航]提供的一切軟件、教程和內容信息僅限用于學習和研究目的;不得將上述內容用于商業或者非法用途,否則,一切后果請用戶自負。本站信息來自網絡收集整理,版權爭議與本站無關。您必須在下載后的24個小時之內,從您的電腦或手機中徹底刪除上述內容。如果您喜歡該程序或內容,請支持正版,購買注冊,得到更好的正版服務。我們非常重視版權問題,如有侵權請郵件[admin@lxwl520.com]與我們聯系進行刪除處理。敬請諒解!