1.可提交的
如果是写在form表单内:能提交
<button>提交</button>
type为submit能提交
<input type="submit" value="提交">
<button type="submit">提交按钮</button>
2.不可提交的
如果是写在form表单外,不可提交
<button>提交</button>
type为button 不能提交
<button type="button">普通按钮</button>
<input type="button" value="普通按钮">