所有未选择的选项标签
我需要选择所有未使用 jQuery 选择的 标记 (
.just_added select option
)。
这就是我到目前为止所得到的...
$('.just_added select option:selected');
问题是它选择了所有选定的 标签,但我需要选择所有
未选择的标签。
有什么想法吗?谢谢指教!
I need to select all <option>
tags (.just_added select option
) that aren't selected with jQuery.
This is what I got so far...
$('.just_added select option:selected');
The problem is that it selects all <option>
tags that are selected, but I need to select all <option>
tags that aren't selected.
Any ideas? Thanks in advice!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
:not
[docs]:或者没有 jQuery 伪选择器(使用
.not()< /代码> [文档]
方法):
You can use
:not
[docs]:Or without jQuery pseudo selectors (using the
.not()
[docs] method):not-selector 应该是你想要的:
The not-selector should you exactly what you want: