当我已经拥有选择对象时,使用 JQuery 获取选择列表框的选定文本

发布于 2024-12-02 16:40:21 字数 309 浏览 0 评论 0原文

这是一个简单的问题,一个真正的新手问题:

我知道可以像这样获取选择选项的文本

$('#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 技术交流群。

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

发布评论

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

评论(1

瑾兮 2024-12-09 16:40:21

只需 select.val(); 就足够了。它将为您提供所选的

工作 演示

如果您想要选定的选项 text 那么你需要做的

select.find('option:selected').text();

或者

select.find('option:selected').html();

Just select.val(); is enough. It will give you the selected value.

Working demo

If you want the selected option text then your need to do

select.find('option:selected').text();

Or

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