关于jquery:如何检查DIV是否存在?

How to check a div is exists or not?

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
Is there an “exists” function for jQuery

1
 

使用附加函数jquery由javascript自动生成的div class="created",为了进行一些验证,我需要检查是否生成了div,我该怎么做呢?使用jquery。

有点像$('.xxx').html()==' '


尝试如下操作:

1
$('div.XXX div.created').length

如果没有创建div,那么$('div.XXX div.created').length将返回0。

1
2
3
if( $('div.XXX div.created').length > 0 ){
  // do something
}

在jquery中,它有方法.size()和实现方法$('div.XXX div.created').size()一样,但.length更可靠。


您可以使用jquery length属性返回所选元素的数目:

1
2
3
if ($('.XXX div.created').length > 0) {

}