用jquery的post方法提交表单的问题
页面代码<formid="perForm"name="perForm"method="post"><table><tbody><tr><td>名字:</td><td><i...
页面代码
<form id="perForm" name="perForm" method="post">
<table>
<tbody>
<tr>
<td>名字:</td>
<td><input type="hidden" id="personId" name="p.personId"/>
<input id="perName" name="p.perName" size=30 type=text
class="easyui-validatebox" required=true /></td>
</tr>
<tr>
<td>年龄:</td>
<td><input id="perAge" name="p.perAge" size=30 type=text
class="easyui-validatebox" required=true /></td>
</tr>
<tr>
<td>性别:</td>
<td>
<select id="perSex" name="p.perSex">
<option value="无">-请选择-</option>
<option value="男">男</option>
<option value="女">女</option>
</select>
</td>
</tr>
<tr>
<td>身份证:</td>
<td><input id="perId" name="p.perId" size=30 type=text
class="easyui-validatebox" required=true /></td>
</tr>
</tbody>
</table>
</form>
<a href="javascript:void(0);" class="easyui-linkbutton" conCls="icon-ok" onclick="perSubmit()">保存</a>
我现在想点击保存时用jquery的post提交表单,如何直接把表单里面的p.*封装成对象传到后台?用的是Struts2的框架 展开
<form id="perForm" name="perForm" method="post">
<table>
<tbody>
<tr>
<td>名字:</td>
<td><input type="hidden" id="personId" name="p.personId"/>
<input id="perName" name="p.perName" size=30 type=text
class="easyui-validatebox" required=true /></td>
</tr>
<tr>
<td>年龄:</td>
<td><input id="perAge" name="p.perAge" size=30 type=text
class="easyui-validatebox" required=true /></td>
</tr>
<tr>
<td>性别:</td>
<td>
<select id="perSex" name="p.perSex">
<option value="无">-请选择-</option>
<option value="男">男</option>
<option value="女">女</option>
</select>
</td>
</tr>
<tr>
<td>身份证:</td>
<td><input id="perId" name="p.perId" size=30 type=text
class="easyui-validatebox" required=true /></td>
</tr>
</tbody>
</table>
</form>
<a href="javascript:void(0);" class="easyui-linkbutton" conCls="icon-ok" onclick="perSubmit()">保存</a>
我现在想点击保存时用jquery的post提交表单,如何直接把表单里面的p.*封装成对象传到后台?用的是Struts2的框架 展开
展开全部
使用post方法提交表单的方法有两种,一种是使用表单的post的方法提交或者使用ajax异步post提交。
工具原料:编辑器、浏览器
1、方法一:直接使用form表单提交,简单的代码如下:
<form action="form_action.asp" method="post">
<p>First name: <input type="text" name="fname" /></p>
<p>Last name: <input type="text" name="lname" /></p>
<input type="submit" value="Submit" />
</form>
2、使用jQuery的ajax方法进行post提交,简单的代码如下:
$.ajax({
type:"post",
url:"test.php",
async:true
});
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询