name,id,value的值如何理解,向后台传递的意义?
name:控件名称
value:用户输入(或选择)的值
id:用于网页脚本编号(javascript)
value用来传递给后台的数据
不同的控件里可以设置同样的name值,但是id的值不能设置有重复的
Id is used to identify the HTML element through the Document Object Model (via Javascript or styled with CSS). Id is expected to be unique within the page.
Name corresponds to the form element and identifies what is posted back to the server.
Id用于通过文档对象模型来确定的HTML元素(通过JavaScript或CSS与样式)。ID是预计将在页面中是唯一的。
Name对应的表单元素,并确定哪些是回发到服务器。