如何使用 jQuery 通过检查以特定字符串结尾的值来设置 DropDownList 的值?
我需要能够通过以特定字符串结尾的第一个选项在下拉列表中选择一个值。
如果我有三个选项...
豌豆
奶酪
跳蚤
...我希望能够选择以“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来源: http://api.jquery.com/attribute -ends-with-selector/
在线演示: http://jsfiddle.net /tg4S2/
source: http://api.jquery.com/attribute-ends-with-selector/
online demo: http://jsfiddle.net/tg4S2/