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>

 

相关文章:

  • 2021-06-24
  • 2021-08-20
  • 2022-12-23
  • 2022-12-23
  • 2021-10-16
  • 2021-12-05
  • 2021-05-25
猜你喜欢
  • 2022-12-23
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
  • 2021-06-18
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案