name,id,value的值如何理解,向后台传递的意义?
name,id,value的值如何理解,向后台传递的意义?
name,id,value的值如何理解,向后台传递的意义?
2016-08-15
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对应的表单元素,并确定哪些是回发到服务器。
举报