当我已经拥有选择对象时,使用 JQuery 获取选择列表框的选定文本
这是一个简单的问题,一个真正的新手问题:
我知道可以像这样获取选择选项的文本
$('#selectBoxId option:selected').val();
但是如果我手中已经有了选择对象怎么办?
例如
var select = $('#selectBoxId');
接下来会发生什么?这是正确的方法吗?
select.find('option:selected').val();
Here is an easy one, a true newbie question:
I know that it's possible to get the text of the selection option like this
$('#selectBoxId option:selected').val();
But what if I already have the select object in my hand?
e.g.
var select = $('#selectBoxId');
What comes next? this is the right way?
select.find('option:selected').val();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需
select.val();
就足够了。它将为您提供所选的值
。工作 演示
如果您想要选定的选项
text
那么你需要做的或者
Just
select.val();
is enough. It will give you the selectedvalue
.Working demo
If you want the selected option
text
then your need to doOr