如何使用 jQuery 通过检查以特定字符串结尾的值来设置 DropDownList 的值?

发布于 2024-10-28 21:20:41 字数 280 浏览 3 评论 0原文

我需要能够通过以特定字符串结尾的第一个选项在下拉列表中选择一个值。

如果我有三个选项...

豌豆

奶酪

跳蚤

...我希望能够选择以“ese”结尾的选项。我也需要它不区分大小写。

类似于 $("#mydropdownlist").val().match("ese$");

任何帮助表示赞赏。

I need to be able to select a value in a dropdownlist by the first option that ends in a specific string.

If I have three options...

Peas

Cheese

Fleas

... I want to be able to select the option ending in 'ese'. I need this to be case insensitive too.

Something like $("#mydropdownlist").val().match("ese$");

Any help is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浪菊怪哟 2024-11-04 21:20:41
$("option[value$='ese']:first").attr("selected","selected");

来源: http://api.jquery.com/attribute -ends-with-selector/

在线演示: http://jsfiddle.net /tg4S2/

$("option[value$='ese']:first").attr("selected","selected");

source: http://api.jquery.com/attribute-ends-with-selector/

online demo: http://jsfiddle.net/tg4S2/

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