-
inputelements of typesubmitare rendered as buttons - When the click event occurs (typically because the user clicked the button), the user agent attempts to submit the form to the server
-
value-
An
input type="submit"element's value attribute contains a string which is displayed as the button's label - Buttons do not have a true value otherwise
- The value provides the accessible description for the button
- If you don't specify a value, the button will have a default label, chosen by the user agent
-
An
formaction- A string indicating the URL to which to submit the data
formenctype- A string that identifies the encoding method to use when submitting the form data to the server
- There are three permitted values
-
application/x-www-form-urlencoded
-
multipart/form-data -
text/plain
-
-
formmethod- A string indicating the HTTP method to use when submitting the form's data
-
Permitted values are:
getpostdialog
-
formtarget- A string which specifies a name or keyword that indicates where to display the response received after submitting the form
-
The string must be
- A valid browser context
_self_blank_parent_top