Check if a DIV element exists by its class in jQuery
This question already has an answer here:
您可以查找该对象,然后检查是否找到一个对象:
if ($(".views-row-4").length) {
// at least one element with class "views-row-4"
}
要检查一个div是否存在,你可以使用下面的jquery代码片断。
if( $('.your-class').length )
{
//CODE IF DIV EXIST
}
试试这个
$('.view-content').children().length
链接地址: http://www.djcxy.com/p/83690.html
上一篇: jQuery检查元素是否存在
下一篇: 检查jQuery中的类是否存在DIV元素