<button>
优质
小牛编辑
122浏览
2023-12-01
描述 (Description)
HTML 您还可以使用《input》标签创建类似的按钮。
例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>HTML Button Tag</title>
</head>
<body>
<form>
<button name = "button" value = "OK" type = "button">Click Me</button>
</form>
</body>
</html>
全局属性 (Global Attributes)
此标记支持HTML Attribute Reference描述的所有全局属性
具体属性 (Specific Attributes)
HTML
属性 | 值 | 描述 |
---|---|---|
自动对焦 | autofocus | 指定在页面加载时按钮应具有输入焦点。 |
残 | disabled | 指定禁用该按钮。 |
形成 | form_id | 指定按钮所属的表单。 |
formaction | URL | 指定表单提交的链接。 |
formenctype | applicationmultipart/form-datatext/plain | 指定在将表单数据发送到服务器之前如何对其进行编码。 |
formmethod | get post | 指定如何发送表单数据。 |
formnovalidate | formnovalidate | 指定不应验证表单数据。 |
formtarget | _blank _self _parent _top | 指定应验证响应的位置。 |
name | name | 指定按钮名称。 |
type | button reset submit | 指定按钮类型。 |
value | text | 指定按钮的初始值。 |
事件属性 (Event Attributes)
此标记支持HTML Events Reference中描述的所有事件属性
浏览器支持 (Browser Support)
铬 | 火狐 | IE | 歌剧 | 苹果浏览器 |
---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes |