按钮HTML不会在IE7中提交表单

And*_*ndy 6 forms button internet-explorer-7

任何人都可以告诉我为什么这个表单不会在IE7中提交?

<form id="orderform" name"orderForm" action="http://www.mydomain.com/secure/delivery-details.html" method="post">
<a  id="add">+</a>
 <table id="ordertable" width="533" border="0" cellspacing="0" cellpadding="2">
  <tbody>
    <tr class="titles">
      <td style="width:100px">Code (e.g 66203)</td>
      <td style="width:100px">Mtrs (e.g 10)</td>
      <td style="width:100px">Order Line Ref.</td>
      <td>Image</td>
    </tr>
    <tr class="item">
      <td class="prodcode"><input type="text" name="prodcode[]" id="prodcode" class="trigger" /></td>
      <td class="meterage"><input type="text" name="meterage[]" id="meterage" /></td>
      <td class="orderlineref"><input type="text" name="orderlineref[]" id="orderlineref" /></td>
      <td class="imgsample"></td>
    </tr>
    </tbody>
  </table>
  <button type="button" value="submit">Submit</button>
</form>
Run Code Online (Sandbox Code Playgroud)

Ces*_*sar 14

尝试 <button type="submit" value="submit">Submit</button>