What's the point of HTML forms `name` attribute?

后端 未结 6 1803
情歌与酒
情歌与酒 2020-12-05 09:01

What\'s the point of the name attribute on an HTML form? As far as I can tell, you can\'t read the form name on submission or do anything else with it. Does it

6条回答
  •  天命终不由人
    2020-12-05 09:57

    You can use the name attribute as an "extra information" attribute - similarly as with a hidden input - but this keeps the extra information tied into the form, which makes it just a little simpler to read/access.

提交回复
热议问题