How to check a div is exists or not?
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
Is there an “exists” function for jQuery
1 |
使用附加函数jquery由javascript自动生成的div
有点像
尝试如下操作:
1 | $('div.XXX div.created').length |
如果没有创建
1 2 3 | if( $('div.XXX div.created').length > 0 ){ // do something } |
在jquery中,它有方法
您可以使用jquery
1 2 3 | if ($('.XXX div.created').length > 0) { } |