“图像”输入类型:为什么是“名字”?属性?
image
输入类型中的 name
属性有何用途?
What is the use of the name
attribute in the image
input type?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
image
输入类型中的 name
属性有何用途?
What is the use of the name
attribute in the image
input type?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
请注意:
发送表单后,您会得到以下结果:
array(2) { ["test_x"]=>字符串(2)“94”[“test_y”]=> string(2) "80" }
namy_x 和 name_y 告诉您用户在该图像上单击的位置。
watch this:
after sending the form you get this:
array(2) { ["test_x"]=> string(2) "94" ["test_y"]=> string(2) "80" }
namy_x and name_y tells you where the user clicked on that image.
定义和用法
name 属性指定输入元素的名称。
name 属性用于在提交到服务器后识别表单数据,或者在客户端使用 JavaScript 引用表单数据。
注意:提交表单时,只有具有 name 属性的表单元素才会传递其值。
Definition and Usage
The name attribute specifies a name for an input element.
The name attribute is used to identify form data after it has been submitted to the server, or to reference form data using JavaScript on the client side.
Note: Only form elements with a name attribute will have their values passed when submitting a form.
图像输入被设计为服务器端图像映射。当您单击它时,您单击的坐标将被发送到服务器。该名称是必需的,以便服务器端进程可以在表单数据的其余部分中找到这些坐标。
尽管浏览器对其他元素的支持较弱,但名称和值也会提交。在有多个图像图像/提交按钮的情况下,这允许服务器区分哪一个被激活(因为只有激活的提交控件才是成功的(即包含在提交的数据中))。
The image input was designed as a server side image map. When you click on it, the coordinates you click on are sent to the server. The name is required so that the server side process can find those coordinates amongst the rest of the form data.
Although browser support is weaker then for other elements, the name and value are also submitted. This allows, in the case of multiple image images / submit buttons, for the server to distinguish which one was activated (since only the activated submission control is successful (i.e. included in the submitted data)).