依韵_宵音
2016-05-08 16:09
为什么必须要写type="button"呢? 不写效果也可以实现的,为什么一定要写呢?
ie浏览器默认:<button type="button"></button>
其他浏览器默认:<button type="submit"></button>
所以,请始终为按钮规定 type 属性。
HTML <button> 标签的 type 属性
定义和用法
type 属性规定按钮的类型。
提示:请始终为按钮规定 type 属性。Internet Explorer 的默认类型是 "button",而其他浏览器中(包括 W3C 规范)的默认值是 "submit"。
语法
<button type="value">
属性值
值
描述
submit 该按钮是提交按钮(除了 Internet Explorer,该值是其他浏览器的默认值)。
button 该按钮是可点击的按钮(Internet Explorer 的默认值)。
reset 该按钮是重置按钮(清除表单数据)。
玩转Bootstrap(基础)
314546 学习 · 2275 问题
相似问题