如何使用 GET 转换多选表单字段以获得正确的 URL?
<select name="channel[]" multiple="multiple">
<option value="pants">Pants</option>
<option value="tshirts">T-Shirts</option>
<option value="sweats">Sweats</option>
</select>
所以,表单是 GET,如果我选择多个,当我单击提交 URL 时,就像:
?channel[]=pants&channel[]=tshirts
我需要它像:
?channel=pants+tshirts
<select name="channel[]" multiple="multiple">
<option value="pants">Pants</option>
<option value="tshirts">T-Shirts</option>
<option value="sweats">Sweats</option>
</select>
So, form is GET, and if I select multiple, and when I click on submit URL is like:
?channel[]=pants&channel[]=tshirts
I need it to be like:
?channel=pants+tshirts
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅使用 HTML 表单无法实现这一点。您必须合并 JavaScript 来操作通道的值。
This cannot be achieved with an HTML only form. You'll have to incorporate javascript to manipulate the value of channel.