1.未设置提交按钮
应设置input的type为submit
2.form表单包含内容
错误当form表单需要包含表单时,注意要么包含整个table,要么被td包含。form无法包含thead,tbody,tfoot和tr等元素,我的错误在于我把form写成from了
(1)<form>
<table></table>
</form>
(2)<table>
<tr>
<td>
<form></form>
</td>
</tr>
</table>
原文:http://www.cnblogs.com/sllcom/p/7868763.html