Difference between id and name attributes in HTML(HTML中id和name属性的区别)
问题描述
id
和 name
属性有什么区别?它们似乎都具有提供标识符的相同目的.
What is the difference between the id
and name
attributes? They both seem to serve the same purpose of providing an identifier.
我想知道(特别是关于 HTML 表单)是否有必要或出于任何原因鼓励使用两者.
I would like to know (specifically with regards to HTML forms) whether or not using both is necessary or encouraged for any reasons.
推荐答案
name
属性在表单提交中发送数据时使用.不同的控件响应不同.例如,您可能有几个具有不同 id
属性但 name
相同的单选按钮.提交后,响应中只有一个值 - 您选择的单选按钮.
The name
attribute is used when sending data in a form submission. Different controls respond differently. For example, you may have several radio buttons with different id
attributes, but the same name
. When submitted, there is just the one value in the response - the radio button you selected.
当然,它的意义远不止这些,但它肯定会让你朝着正确的方向思考.
Of course, there's more to it than that, but it will definitely get you thinking in the right direction.
这篇关于HTML中id和name属性的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:HTML中id和name属性的区别
基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01