jQuery:检查具有特定类名的div是否存在
使用 jQuery,我以编程方式生成一堆 div
,如下所示:
<div class="mydivclass" id="myid1">Some Text1</div>
<div class="mydivclass" id="myid2">Some Text2</div>
在代码中的其他位置,我需要检测这些 DIV 是否存在。 div 的类名相同,但每个 div 的 ID 都不同。知道如何使用 jQuery 检测它们吗?
Using jQuery I'm programmatically generating a bunch of div
's like this:
<div class="mydivclass" id="myid1">Some Text1</div>
<div class="mydivclass" id="myid2">Some Text2</div>
Somewhere else in my code I need to detect if these DIVs exist. The class name for the divs is the same but the ID changes for each div. Any idea how to detect them using jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(20)
您可以通过检查从 JQuery 返回的第一个对象来简化此操作,如下所示:
在这种情况下,如果第一个 (
[0]
) 索引处存在真值,则假设类存在。编辑 04/10/2013: 我在此处创建了一个 jsperf 测试用例。
You can simplify this by checking the first object that is returned from JQuery like so:
In this case if there is a truthy value at the first (
[0]
) index, then assume class exists.Edit 04/10/2013: I've created a jsperf test case here.
您可以使用
size()
,但 jQuery 建议您使用 length 以避免另一个函数调用的开销:因此:
http://api.jquery.com/size/
http://api .jquery.com/length/
更新
所选答案使用性能测试,但它有一点缺陷,因为它还包括元素选择作为性能的一部分,这不是这里测试的内容。这是更新的性能测试:
http://jsperf.com/check-if-div- contains/3
我第一次运行的测试表明,属性检索比索引检索更快,尽管在我看来,它可以忽略不计。我仍然更喜欢使用长度,因为对我来说,它对于代码的意图更有意义,而不是更简洁的条件。
You can use
size()
, but jQuery recommends you use length to avoid the overhead of another function call:So:
http://api.jquery.com/size/
http://api.jquery.com/length/
UPDATE
The selected answer uses a perf test, but it's slightly flawed since it is also including element selection as part of the perf, which is not what's being tested here. Here is an updated perf test:
http://jsperf.com/check-if-div-exists/3
My first run of the test shows that property retrieval is faster than index retrieval, although IMO it's pretty negligible. I still prefer using length as to me it makes more sense as to the intent of the code instead of a more terse condition.
没有 jQuery:
原生 JavaScript 总是会更快。在这种情况下: (示例)
如果您想检查父元素是否包含另一个具有特定属性的元素类,您可以使用以下任一方法。 (示例)
或者,您可以使用
.contains()
父元素上的方法。 (example)..最后,如果您想检查给定元素是否仅包含某个类, 使用:
Without jQuery:
Native JavaScript is always going to be faster. In this case: (example)
If you want to check to see if a parent element contains another element with a specific class, you could use either of the following. (example)
Alternatively, you can use the
.contains()
method on the parent element. (example)..and finally, if you want to check to see if a given element merely contains a certain class, use:
这是一个不使用 Jquery
参考的解决方案链接
Here is a solution without using Jquery
reference link
这很简单...
It's quite simple...
要显式测试
div
元素:if( $('div.mydivclass').length ){...}
To test for
div
elements explicitly:if( $('div.mydivclass').length ){...}
这里有一些方法:
我们可以根据需求使用 abobe 定义的任何一种方法。
Here are some ways:
We can use any one of the abobe defined ways based on the requirement.
简单的代码如下:
隐藏带有粒子id的div:
The simple code is given below :
To hide the div with particuler id :
最好的方法是检查课程的长度,如下所示:
Best way is to check the length of the class as shown below:
在Jquery中你可以这样使用。
使用 JavaScript
In Jquery you can use like this.
With JavaScript
用它来搜索整个页面
Use this to search whole page
这是 Javascript 中检查类(hasClass)的非常示例解决方案:
Here is very sample solution for check class (hasClass) in Javascript:
检查div是否存在于某个类中
check if the div exists with a certain class
JavaScript 中最好的方法:
The best way in Javascript:
size()
方法仅返回 jQuery 选择器选择的元素数量 - 在本例中为类mydivclass
的元素数量。如果它返回 0,则表达式为 false,因此不存在,如果它返回任何其他数字,则 div 必须存在。The
size()
method just returns the number of elements that the jQuery selector selects - in this case the number of elements with the classmydivclass
. If it returns 0, the expression is false, and therefore there are none, and if it returns any other number, the divs must exist.