0

再会

这个脚本在表中查找空元素时遇到一些问题 -0 当表为空时,它将显示警报“空”。如果不是,它必须说“不是空的”。但是,我在这里的那个,每次都显示“不为空” - 桌子是否为空......

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');
            }

        });

谢谢!

4

0 回答 0