1. 程式人生 > >關於button中的type屬性來決定是否提交form表單

關於button中的type屬性來決定是否提交form表單

button中的type屬性:submit和button。(1)其中IE瀏覽器預設的是button,非IE預設的是submit;(2)button不提交整個form表單,而submit提交整個form表單。

<form>
    <button type="button">button</button><!--不提交form-->
    <button type="submit">button</button><!--提交form-->
    <button>button</button><!--非IE提交form,IE不提交form-->
</form>
---------------------