如何从 DropDownList 中获取最后一个选项值?
我有一个包含以下选项的 DropDownList
:
o select
1 hot
2 cold
3 warm
如何从 DropDownList
获取最后一个选项值(“warm”)?
I have a DropDownList
with the following options:
o select
1 hot
2 cold
3 warm
How can I get the last option value ("warm") from the DropDownList
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设您有一个引用 DropDownList 的变量:
请注意,您应该首先检查 DropDownList 是否有项目,否则当列表为空时,这将引发 IndexOutOfBounds 异常。谢谢@Cylon。
Assuming that you have a variable referenced to your DropDownList:
Note that you should probably check that the DropDownList has items first, or else this will throw an IndexOutOfBounds exception when the list is empty. Thanks @Cylon.
(感谢 Cylon Cat 纠正我)
非常简单
(Thanks to Cylon Cat for correcting me)
Very Simple
像这样的东西
cboTemp.SelectedIndex = cboTemp.Items.Count -1;
Something like
cboTemp.SelectedIndex = cboTemp.Items.Count -1;