码迷,mamicode.com
首页 > Web开发 > 详细

ajax传form表单,表单里有table

时间:2015-08-31 11:34:43      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

<form id="form1" action="${ctx}/vehicleOwner_getVehicleOwnerList.do" method="post">
  <table class="tablelist mt5" id="picPx">
      <thead>
         <tr>
            <th width="2%">序号</th>
            <th width="5%">姓名</th>
             <th width="5%">身份证号</th>
             <th width="5%">排序号</th>
          </tr>
       </thead>
       <tbody>
          <c:forEach items="${list}" var="l"  varStatus="n">
              <tr>
                 <td class="tdcol">${n.count}</td>
                 <td class="tdcol">${l.name}</td> 
                 <td class="tdcol">${l.sfzh}</td>
                 <td class="tdcol">
                     <input style=width:50px‘  id="pxh" name="pxh_${n.count}" type="text"  value="${l.pxh}" class="texts" onKeyUp="value=value.replace(/\D/g,‘‘)" onafterpaste="value=value.replace(/\D/g,‘‘)" />
                     <input style=width:50px‘  id="sf" name="id_${n.count}" type="hidden"  value="${l.id}" class="texts"/>
                     <input style=width:50px‘  id="sf" name="count" type="hidden"  value="${list.size()}" class="texts"/>
                 </td>
             </tr>
          </c:forEach>
      </tbody>
   </table>
   <div align="center" style="margin-top: 15px">
        <a href="javaScript:void(0)" style="text-decoration:none;color:#000000" onclick="doSave();" class="xxbj">
          <span>&nbsp;&nbsp;提交&nbsp;&nbsp;</span>
        </a>
   </div>           
</form>

有时黄色部分可能报错,改为${fn:length(list)}

<script type="text/javascript">
            function doSave() {
                 $.ajax({
                    type: "post",
                    url: "perInfoCollection_savePxh.do",
                    data: $("#form1").serialize(),
                    success: function(data) {
                        alert("提交成功!");
                        window.close();
                    },
                    error: function(data) {
                        alert(data);
                    }
                });
            }
</script>

 

ajax传form表单,表单里有table

标签:

原文地址:http://www.cnblogs.com/sonnhou/p/4772502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!