jQ,在下拉列表更改/选择时,使用 ?somekey=selected-item-value 在同一 url 上获取请求
当有人选择下拉列表项时,我想重定向到同一页面,但设置了查询字符串,
www.example.com/?somekey=selected-value
其中 selected-value
是选项的数值。
我正在使用 jQuery,如果这样更容易的话。
When someone selects a drop down list item, I want to redirect to the same page but with the query string set with
www.example.com/?somekey=selected-value
where selected-value
is the numeric value of the option.
I am using jQuery if that makes it easier.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 select 元素中使用 onchange 事件:
或者如果您想使用 jQuery 连接它:
Use the onchange event in the select element:
Or if you want to hook it up using jQuery:
绝对地。这是一些代码:
Absolutely. Heres some code: