submit默认提交表单
1、<button></button>不设置type默认为submit类型;
2、onsubmit()方法
<input type="submit" value="提交"> //或者 <button type="submit">提交</button>
3、<input type="button">添加onclick事件调用submit() 提交表单
4、使用ajax对数据进行验证后再提交
<input type="button">或者<button type="button"></button>
谨记:不要把submit与onclick混用