A very simple form containing a single text control and submit button, may have the following aspect:
< form action=???save.n??? method=???post??? >
< input type=???text??? name=???name??? value=???John??? / >
< input type=???submit??? name=???submit??? value=???Send Name??? / >
< /form >
The action attribute says which server page must receive the content of the form (if absent the current
URI will be used).
Element
Name Empty?
Frequently used Attributes
or Attribute Groups Description
button false name, value, type,
disabled, tabindex,
accesskey, onfocus,
onblur, i18n, core,
events
It is functionally equivalent to an input
element of type button but has richer
rendering capabilities. The button element
may have content like an image or extended
text.
fieldset false i18n, core, events Encapsulates a group of related controls and
labels.
form false action, method,
enctype, accept -
charset, accept, name,
i18n, core, events
Acts like a container for a set of controls.
More than one form element can be present
inside the body of a document.
Pages:
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088