如何按名称而不是按值设置 HTML 下拉列表中的选定项目?
我有一个 HTML 组合框,其中包含独特的选项。例如,country
下拉列表包含 country_id
作为值,country name
作为文本。
有没有什么方法可以使用 jQuery 或 JavaScript 让我使用 country name
而不是 country_id
设置所选项目?
I have an HTML combobox which contains unique options. For example, a country
dropdown which contains country_id
as a value and country name
as text.
Is there any way using jQuery or JavaScript to let me set the selected item using the country name
not the country_id
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
类似的东西?
something like that?
此链接讨论了一些选项:
http://www.daftlogic.com/information-programmatically-preselect -dropdown-using-javascript.htm
This links discusses some options:
http://www.daftlogic.com/information-programmatically-preselect-dropdown-using-javascript.htm
您可以像下面这样写:
获取为选项给出的文本
You can do write like below:
to obtain the text given for the option