如何按名称而不是按值设置 HTML 下拉列表中的选定项目?

发布于 2024-09-09 18:57:31 字数 228 浏览 4 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

峩卟喜欢 2024-09-16 18:57:31
$("option:contains('COUNTRY NAME HERE')").attr('selected','selected');

类似的东西?

$("option:contains('COUNTRY NAME HERE')").attr('selected','selected');

something like that?

蓝天 2024-09-16 18:57:31

您可以像下面这样写:

$("option:selected").text() 

获取为选项给出的文本

You can do write like below:

$("option:selected").text() 

to obtain the text given for the option

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文