jQuery - 如何选择没有类的元素?
如何获取没有任何类名的元素?
<td class="B A">A03<sub>reserved</sub></td>
<td class="B R">R70</td>
<td>105</td>
<td class="M C">L220</td>
现在我正在这样做 $('td').not('.A, .B, .C, .M, .R')
一定有更好的方法!
How do I get elements that do not have any class names?
<td class="B A">A03<sub>reserved</sub></td>
<td class="B R">R70</td>
<td>105</td>
<td class="M C">L220</td>
Right now I'm doing this $('td').not('.A, .B, .C, .M, .R')
There's gotta be a better way!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用带有空白值的属性选择器:
You can use an attribute selector with a blank value:
这个怎么样:
不确定它是否适用于以下情况:
how about this:
not sure if it'll work for something like:
一种方法是使用
filter()
:One way to do it is to use
filter()
: