|
Home >> FAQs/Tutorials >> XHTML Tutorials and Tips >> Index
XHTML 1.0 Tutorials - Understanding Forms and Input Fields
By: FYICenter.com
Part:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(Continued from previous part...)
How Many Input Types Are Supported by INPUT Elements?
There are 10 input types are supported by "input" elements:
- <input type="text"> - Input text box. This is also the default type.
- <input type="password"> - Password input box, which works like an input text box,
but input text is hidden by "*" characters.
- <input type="checkbox"> - Check box.
- <input type="radio"> - Radio button.
- <input type="submit"> - Submit button. If a submit button is clicked,
form input data will be submitted to the form processing program.
- <input type="reset"> - Reset button. If a reset button is clicked,
all input fields will be reset to their default values.
- <input type="file"> - File upload field, which has an input box and
a file browse button.
- <input type="hidden"> - Hidden field, which has a predefined input value invisible
on the browser window.
- <input type="image"> - Image button. If an image button is clicked,
the mouse coordinates on the image and other form input data will be submitted
to the form processing program.
- <input type="button"> - Non-submit button. If a non-submit button
is clicked, form input data will not be submitted. Only client side script will
be triggered.
(Continued on next part...)
Part:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|