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 | 设置或返回按钮的 name 属性的值 |
type | 设置或返回按钮的类型 |
value | 设置或返回按钮的 value 属性的值 |
标准属性和事件
相关页面
HTML 参考: HTML <button> 标签