检查是否存在具有相同类的多个元素
这个问题在这里已经有了答案:
尝试使用length
属性来完成您的任务,
if($('.panel').length > 1) {
console.log('yes, more than one element exist')
}
if ( $('.panel').length >= 2 ) {
console.log('exists')
}
这应该工作
只需使用length属性;)
if ($('.panel').length > 0) {
// your code
}
链接地址: http://www.djcxy.com/p/14677.html
上一篇: Check if multiple elements with same class exist
下一篇: How to check if an object with an ID already exists on the page?