使用 JQuery 选择下拉列表中所有可见的选定选项

发布于 2024-10-01 09:41:52 字数 174 浏览 1 评论 0原文

我需要选择所有已选中且可见的标签。

这是正确的方法吗?

$('select option:selected:visible')

我相信它在过去有效,但显然现在返回未定义。但是,有一个可见的下拉列表,其中包含选定的选项。

感谢您的帮助。

I need to select all the Tags that are both selected and visible.

Is this the correct way to do it?

$('select option:selected:visible')

I believe it worked in the past, but apparently this returns undefined now. There is however a visible drop-down list with an option selected.

Thanks for your help.

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

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

发布评论

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

评论(1

稀香 2024-10-08 09:41:52

这是你想要的吗?

$('select:visible option:selected')

我不确定选项类是否可见,这可能就是您没有得到结果的原因。

Is this what you want?

$('select:visible option:selected')

I'm not sure if the options class as visible so that might be why you are getting no results.

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