An HTML form with three input fields; two text fields and one submit button.
The name
attribute specifies the name of an <input>
element.
The name
attribute is used to reference elements in a JavaScript, or to reference form data after a form is submitted.
Note: Only form elements with a name
attribute will have their values passed when submitting a form.
The numbers in the table specify the first browser version that fully supports the attribute.
<input name="text">
Value | Description |
---|---|
text | Specifies the name of the <input> element |
Example:
HTML
<form action="/action_page.php">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname"><br><br>
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname"><br><br>
<input type="submit" value="Submit">
</form>
Type: | Html |
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |