Posted in Javascript onJanuary 31, 2011
.serializeArray() 序列化表格元素 (类似 '.serialize()' 方法) 返回 JSON 数据结构数据。(摘自jquery文档)。
有以下一个表单窗口,代码:
<form action="" method="post" id="tf"> <table width="100%" cellspacing="0" cellpadding="0" border="0"> <tr> <th>姓名:</th> <td> <input type="text" id="txtUserName" name="UserName" /> </td> <th>联系手机:</th> <td> <input type="text" name="Mobile" id="txtMobile" maxlength="11"/> </td> </tr> <tr> <td style=" text-align:center;" colspan="2"> <input type="button" value=" 提 交 " style="padding-top:3px;" name="butsubmit" id="butsubmit"/> </td> </tr> </table> </form>
JavaScript代码处理表单:
<script> $(function () { $("#butsubmit").click(function(){ var data = convertArray($("#tf").serializeArray()); $.post(url, data, function (d) {},"json"); }); }) function convertArray(o) { //主要是推荐这个函数。它将jquery系列化后的值转为name:value的形式。 var v = {}; for (var i in o) { if (typeof (v[o[i].name]) == 'undefined') v[o[i].name] = o[i].value; else v[o[i].name] += "," + o[i].value; } return v; } </script>
与jquery serializeArray()一起使用的函数,主要来方便提交表单
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@