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