HTML button 标签初试
以下代码标记了一个按钮:
<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。
属性 | 值 | 描述 |
---|---|---|
autofocus | autofocus | 规定当页面加载时按钮应当自动地获得焦点。 |
disabled | disabled | 规定应该禁用该按钮。 |
form | form_name | 规定按钮属于一个或多个表单。 |
formaction | url | 覆盖 form 元素的 action 属性。注释:该属性与 type="submit" 配合使用。 |
formenctype | 见注释 | 覆盖 form 元素的 enctype 属性。注释:该属性与 type="submit" 配合使用。 |
formmethod | getpost | 覆盖 form 元素的 method 属性。注释:该属性与 type="submit" 配合使用。 |
formnovalidate | formnovalidate | 覆盖 form 元素的 novalidate 属性。注释:该属性与 type="submit" 配合使用。 |
formtarget | _blank_self_parent_topframename | 覆盖 form 元素的 target 属性。注释:该属性与 type="submit" 配合使用。 |
name | button_name | 规定按钮的名称。 |
type | buttonresetsubmit | 规定按钮的类型。 |
value | text | 规定按钮的初始值。可由脚本进行修改。 |
当页面加载时这个 Button 会获得焦点
<button type="button" autofocus="autofocus"> 点击这里 </button>
这个 Button 会被禁用( 不可点击,不响应点击事件 )
<button type="button" disabled="disabled">Click Me!</button>
其他基本就是配合 form 进行提交数据操作