When using the HTML <input> tag, what is the difference between the use of the name and id attributes especially that I found that they are sometimes named the same?
Thanks.
|
Name Attribute
Id Attribute
|
|||||||||||||
|
|
the name attribute is used for posting to e.g. a database. The id is primarily used for css (and javascript). Suppose you have this setup:
in order to get the value with PHP when posting your form, it will use the name-attribute, like this:
The id is used for styling, as said before, for when you want to use specific css.
Of course, you can use the same denomination for your id and name-attribute. These two will not interfere with each other. also, name can be used for more items, like when you are using radiobuttons. Name is then used to group your radiobuttons, so you can only select one of those options.
And in this very specific case, I can further say how id is used, because you will probably want a label with your radiobutton. Label has a for-attribute, which uses the id of your input to link this label to your input (when you click the label, the button is checked). Example can be found below
And I guess that's about it. EDIT It has been brought to my attention that I have been wrong. The name attribute is used to send data to a webserver, not a database (which i actually knew, but i was too fast in composing my answer to this question) So excuse me for this mistake and let it be known that the name-attribute is send to the webserver and not directly to the database. |
|||||||||||||||||||
|
IDs must be unique...within page DOM element tree so each control is individually accessible by its
Names are quite often unique but can be shared...within page DOM between several controls of the same type (think of radio buttons) so when data gets POSTed to server only a particular value gets sent. So when you have several radio buttons on your page, only the selected one's
When names can be duplicatedIt may sometimes be beneficial that names are shared between controls of any form input type. But when? You didn't state what your server platform may be, but if you used something like Asp.net MVC you get the benefit of automatic data validation (client and server) and also binding sent data to strong types. That means that those names have to match type property names. Now suppose you have this scenario:
So your view's model (since it displays a list) is of type How about name sharing then?Each item is wrapped within its own This particular scenario can be seen on my Creative stories mini-site. You won't understand the language, but you can check out those multiple forms and shared names. Never mind that |
||||
|
|
|
The name definies what the name of the attribute will be as soon as the form is submitted. So if you want to read this attribute later you will find it under the "name" in the POST or GET Request. Whereas the id is used to adress a field or element in javascript or css. |
|||
|
|
|
The |
|||
|
|
|
The The |
|||||||||||||||
|
* names also used to identify anchors, but this is deprecated and 'id' is a preferred way to do so nowadays. |
||||
|
|
IDandNameusage and behaviour are very well specified and documented hence answers can't be anything else but constructive. Why the close vote then? The same thing goes for -1 voters? What seems to be wrong with the question? – Robert Koritnik Sep 19 '11 at 17:22