美好的一天
我在这个脚本中遇到一些问题,在表格中查找空元素-0当表格为空时,它会显示警告“空”。如果没有,它必须说“不空”。 但是,我在这里的那个,每次都显示'not empty' - 表是否为空......
jQuery(document).ready(function () {
var tds = jQuery("table.borderClass > tbody > tr > td");
var anyEmpty = false;
tds.each(function () {
if (jQuery(this).text() == "")
anyEmpty = true;
});
if (anyEmpty == false || tds.length == 0) {
alert('empty');
}
else {
alert('NOT empty');
}
});
谢谢!