form中的button默認提交事件

<form action="">
        <input autocomplete="off" type="text" name="" id="m">         
        <button>Send</button>
    </form>

在form中的button默認的時候點擊時間會執行form的提交事件(至關於默認爲submit類型)spa

若是須要阻止它:code

<form action="">
        <input autocomplete="off" type="text" name="" id="m"> 
        <button type='button'>Send</button>
    </form>

將button的type修改成button能夠阻止orm

相關文章
相關標籤/搜索