Sunday, 8 January 2012

HTML DOM Form Object


Form Object

The Form object represents an HTML form.
For each <form> tag in an HTML document, a Form object is created.
Forms are used to collect user input, and contain input elements like text fields, checkboxes, radio-buttons, submit buttons and more. A form can also contain select menus, textarea, fieldset, legend, and label elements.
Forms are used to pass data to a server.

Form Object Collections

W3C: W3C Standard.
CollectionDescriptionW3C
elements[]Returns an array of all elements in a formYes

Form Object Properties

PropertyDescriptionW3C
acceptCharsetSets or returns the value of the accept-charset attribute in a formYes
actionSets or returns the value of the action attribute in a formYes
enctypeSets or returns the value of the enctype attribute in a formYes
lengthReturns the number of elements in a formYes
methodSets or returns the value of the method attribute in a formYes
nameSets or returns the value of the name attribute in a formYes
targetSets or returns the value of the target attribute in a formYes

Form Object Methods

MethodDescriptionW3C
reset()Resets a formYes
submit()Submits a formYes

Form Object Events

EventThe event occurs when...W3C
onresetThe reset button is clickedYes
onsubmitThe submit button is clickedYes


No comments:

Post a Comment