是(ui-button 或 ui-widget)但是(不是 #id 或 #id 的子级)并且(不是类 x)jQuery 选择器
有人可以帮助解决以下 jQuery
我需要所有不是两个表 #id1 和 #id2 的子表且不是 classid=x 的子表的 jQuery UI 按钮
我来了到目前为止,
$(":button(.ui-button .ui-widget):not(#table1 #table2):not(.MyCustomClass)")
但这似乎不起作用......
我错过了什么?
Could someone please help with the following jQuery
I need all jQuery UI buttons that are not children of two tables #id1 and #id2 and not of classid=x
What I have come up with so far is
$(":button(.ui-button .ui-widget):not(#table1 #table2):not(.MyCustomClass)")
but this doesnt seem to work...
What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想你想要:
将限定符从选择器中分离出来通常会更快。
I think you want:
It's usually faster to break the qualifiers out of the selector.
尝试(演示):
Try (demo):