如何获取表格图像以及如何检查图像是否可用或不使用jquery?

时间:2012-08-16 13:37:47

标签: jquery

我有3 * 3矩阵表,每个都有图像但是一个是空的,所以如何检查是空的或不是空的使用JQUERY

2 个答案:

答案 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)');