HTML DOM Button 对象
Button 对象
Button 对象代表 HTML <button> 元素。
访问 Button 对象
您可使用 getElementById() 来访问 <button> 元素:
创建 Button 对象
您可使用 document.createElement() 方法来创建 <button> 元素:
Button 对象属性
属性 | 描述 |
---|---|
autofocus | 设置或返回页面加载时按钮是否应自动获得焦点 |
disabled | 设置或返回是否禁用按钮。 |
form | 返回对包含按钮的表单的引用。 |
formAction | 设置或返回按钮的formaction属性的值 |
formEnctype | 设置或返回按钮的formenctype属性的值 |
formMethod | 设置或返回按钮的formmethod属性的值 |
formNoValidate | 设置或返回表单数据是否应在提交时进行验证 |
formTarget | 设置或返回按钮的formtarget属性的值 |
name | 设置或返回按钮的名称。 |
type | 返回按钮的表单类型。 |
value | 设置或返回显示在按钮上的文本。 |
标准属性和事件
相关页面
HTML 参考手册: HTML <button> 标签