Тег BUTTON
BUTTON
<BUTTON
ACCESSKEY=string
DISABLED
CLASS=string
ID=string
LANG=string
LANGUAGE=JAVASCRIPT
| JSCRIPT | VBS | VBSCRIPT
STYLE=string
TITLE=string
TYPE=BUTTON
| RESET | SUBMIT
event = script
>
The contents are rendered as a HTML button.
- ACCESSKEY=
- Specifies an accelerator for the element.
- DISABLED
- Used to disable an element.
- CLASS=
- Specifies the class of the tag being defined. This is most often used to
associated a sub-classed style sheet with the tag.
- ID=
- An SGML identifier used as the target for hypertext links or for naming
particular elements in associated style sheets. Valid names to script with are
any alphanumeric string that begins with a letter. Valid special characters
include underbar "_".
- LANG=
- This specifies the language to use. The specifier is an ISO standard
language abbreviation.
- LANGUAGE=
- Specifies the language that the current script is written in. JavaScript is
the default for this attribute.
- STYLE=
- Specifies an in-line style sheet for the tag.
- TITLE=
- The Title attribute is used to provide advisory information.
- TYPE=
- The author can define a button that will have UI that indicates default for
the ENTER key (a dark border), and a button that will have default behavior for
the ESC key.
- event
- Can be one or more of these events:
onafterupdate onbeforeupdate
onblur onclick
ondblclick ondragstart
onfocus onhelp
onkeydown onkeypress
onmousedown onmousemove
onmouseout onmouseover
onmouseup onresize
onrowenter onrowexit
onscroll
onselectstart
This element is a block element.
Both the start and end tags are required.