日期:2014-05-16  浏览次数:20664 次

input button


都是button,这2种有什么区别?

<button id="delbtn_img">删除图片</button>

<input id="Button1" type="button" value="button" />

------解决方案--------------------
推荐input
------解决方案--------------------
引用:
Quote: 引用:

推荐input


谢谢,能说下原因吗?

规范
------解决方案--------------------
在表单中(<form>),推荐使用<input type="button",其它时候无所谓
------解决方案--------------------
原因还真说不出

button 标签是html最早时候提供的

后来html增加了表单标签 就是 input 通过input的type来指定各种表单元素的显示

我相信用input 兼容性会更好  没有理由 只是感觉
------解决方案--------------------
w3c:

Note: If you use the <button> element in an HTML form, different browsers may submit different values. Use <input> to create buttons in an HTML form.