使用jQuery,我以编程方式生成了一堆div,就像这样:

<div class="mydivclass" id="myid1">Some Text1</div>
<div class="mydivclass" id="myid2">Some Text2</div>

在代码的其他地方,我需要检测这些div是否存在。div的类名是相同的,但ID为每个div的变化。任何想法如何检测他们使用jQuery?


当前回答

下面是Javascript中检查类(hasClass)的示例解决方案:

const mydivclass = document.querySelector('.mydivclass');
// if 'hasClass' is exist on 'mydivclass'
if(mydivclass.classList.contains('hasClass')) {
   // do something if 'hasClass' is exist.
}

其他回答

你可以使用size(),但jQuery建议你使用length来避免另一个函数调用的开销:

$('div.mydivclass').length

So:

// since length is zero, it evaluates to false
if ($('div.mydivclass').length) {

http://api.jquery.com/size/

http://api.jquery.com/length/

更新

选择的答案使用性能测试,但它有轻微的缺陷,因为它也包括元素选择作为性能的一部分,这不是这里要测试的内容。这是一个更新的性能测试:

http://jsperf.com/check-if-div-exists/3

我的第一次测试运行表明,属性检索比索引检索快,尽管在我看来这几乎可以忽略不计。我仍然喜欢使用长度,因为对我来说,它更有意义的意图,而不是一个更简洁的条件。

检查div是否与某个类一起存在

if ($(".mydivclass").length > 0) //it exists 
{

}
$('div').hasClass('mydivclass')// Returns true if the class exist.

最好的方法是检查类的长度如下所示:

if ($('.myDivClass').length) {

这很简单……

if ($('.mydivclass').length > 0) {
  //do something
}