org.w3c.dom.html
public interface HTMLButtonElement extends HTMLElement
| Method Summary | |
|---|---|
| String | getAccessKey()
A single character access key to give access to the form control. |
| boolean | getDisabled()
The control is unavailable in this context. |
| HTMLFormElement | getForm()
Returns the FORM element containing this control.Returns
null if this control is not within the context of a form. |
| String | getName()
Form control or object name when submitted with a form. |
| int | getTabIndex()
Index that represents the element's position in the tabbing order. |
| String | getType()
The type of button. |
| String | getValue()
The current form control value. |
| void | setAccessKey(String accessKey) |
| void | setDisabled(boolean disabled) |
| void | setName(String name) |
| void | setTabIndex(int tabIndex) |
| void | setValue(String value) |
FORM element containing this control.Returns
null if this control is not within the context of a form.