我有3 * 3矩阵表,每个都有图像但是一个是空的,所以如何检查是空的或不是空的使用JQUERY
答案 0 :(得分:3)
您可以检查<td>
是否有任何子元素:
if($('td').children().length > 0) {
// do something
}
答案 1 :(得分:0)
您可以使用length
属性:
$('table tr td').each(function() {
if (!$(this).find('img').length) {
console.log('This TD is empty')
}
})
或:
$('table tr td').each(function() {
if ($(this).is(':empty')) {
console.log('This TD is empty')
}
})
或:
var $empty = $('table td:empty');
var $notEmpty = $('table td:not(:empty)');