以下代码标记了一个按钮:

<button type="button">Click Me!</button>

如果在 HTML 表单中使用 button 元素,不同的浏览器会提交不同的值。Internet Explorer 将提交 <button> 与 </button> 之间的文本,而其他浏览器将提交 value 属性的内容。请在 HTML 表单中使用 input 元素来创建按钮。

定义和用法

<button> 标签定义一个按钮。

在 button 元素内部,您可以放置内容,比如文本或图像。这是该元素与使用 input 元素创建的按钮之间的不同之处。

<button> 控件 与 <input type="button"> 相比,提供了更为强大的功能和更丰富的内容。<button> 与 </button> 标签之间的所有内容都是按钮的内容,其中包括任何可接受的正文内容,比如文本或多媒体内容。例如,我们可以在按钮中包括一个图像和相关的文本,用它们在按钮中创建一个吸引人的标记图像。

唯一禁止使用的元素是图像映射,因为它对鼠标和键盘敏感的动作会干扰表单按钮的行为。

请始终为按钮规定 type 属性。Internet Explorer 的默认类型是 "button",而其他浏览器中(包括 W3C 规范)的默认值是 "submit"。

HTML 4.01 与 HTML 5 之间的差异

HTML 5 中的新属性:autofocus, form, formaction, formenctype, formmethod, formnovalidate 以及 formtarget。

属性描述
autofocusautofocus规定当页面加载时按钮应当自动地获得焦点。
disableddisabled规定应该禁用该按钮。
formform_name规定按钮属于一个或多个表单。
formactionurl覆盖 form 元素的 action 属性。注释:该属性与 type="submit" 配合使用。
formenctype见注释覆盖 form 元素的 enctype 属性。注释:该属性与 type="submit" 配合使用。
formmethodgetpost覆盖 form 元素的 method 属性。注释:该属性与 type="submit" 配合使用。
formnovalidateformnovalidate覆盖 form 元素的 novalidate 属性。注释:该属性与 type="submit" 配合使用。
formtarget_blank_self_parent_topframename覆盖 form 元素的 target 属性。注释:该属性与 type="submit" 配合使用。
namebutton_name规定按钮的名称。
typebuttonresetsubmit规定按钮的类型。
valuetext规定按钮的初始值。可由脚本进行修改。

当页面加载时这个 Button 会获得焦点

<button type="button" autofocus="autofocus"> 点击这里 </button>

这个 Button 会被禁用( 不可点击,不响应点击事件 )

<button type="button" disabled="disabled">Click Me!</button>

其他基本就是配合 form 进行提交数据操作