需要添加多个元素来使用 jQuery 搜索特定类
我正在使用 jQuery,目前正在寻找特定类的一种类型的元素。我需要更新它以查看三个不同的元素,但不确定如何执行此操作,因为我假设我需要使用数组?
这是我当前的代码:
$findRed = $("p.red", "#main");
if ( $findRed.length >= 1 ) {
greater or equal to one
}
我需要更改它,以便它将在 ap、div 或 span 标记中查找 .red。
任何帮助将不胜感激。
I am using jQuery and am currently looking in one type of element for a particular class. I need to update it to look in three different elements, but am not sure how to do this since I assume I will need to use an array?
Here's my current code:
$findRed = $("p.red", "#main");
if ( $findRed.length >= 1 ) {
greater or equal to one
}
I need to change it so it will look for .red in either a p, div, or span tag.
Any help would be appreciate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您的选择器可以简单地是
.red
。这将与该类的任何元素类型匹配。或者,如果您只想要这些特定元素,您的选择器可能如下所示:Your selector can simply be
.red
. That will match any element type with that class. Or if you just want those specific elements, your selector could look like this:试试这个:
try this: