需要 jquery 选择框帮助
我有选择框,选项值有
英国 美国
当我选择“英国”作为选项时,我想要两个值“UK”作为选定值,参数值为 1
有可能使用 jQuery 吗?
I have select box and option value has
United Kingdom
United States
When i select "United Kingdom" as option i want two values "UK" as selected value and param value as 1
Any possiblity using jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 .data() 函数。首先,您必须设置所选选项的数据。
然后您可以通过执行以下操作来获取该数据:
You could use the .data() function. First you have to set the data on your select options.
Then you can get that data by doing the following:
HTML
jQuery
HTML
jQuery
使用二维数组并保留所需的值并获取下拉列表的 onchange 事件
Use an 2D Array and keep both the required values and get both onchange event of dropdown