使用隐藏输入字段传递多个值
使用 select 标签,可以仅使用 HTML 通过选择多个选项来发布多个值吗?
例如:
<select multiple="" >
<option value="1"/>
<option value="2"/>
<option value="3"/>
</select>
是否可以像上一示例中使用一个或多个 字段那样传递多个值?再次强调,严格使用 HTML。
With a select tag, it is possible to post multiple values using only HTML by selecting more than one option?
For example:
<select multiple="" >
<option value="1"/>
<option value="2"/>
<option value="3"/>
</select>
Is it possible to pass more than one value as one would achieve with the previous example using one or more <input type="hidden">
fields? Again, strictly with HTML.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在字段名称中使用 [ ] 发送多个值:
您将在 your_field_name 字段中获得一个值数组。
Use [ ] in the field name to send multiple values:
You will get an array of values in the your_field_name field.