我有一个表,其中包含具有行跨度的列和不包含行跨度的行。我想从下表中读取日期列。
我想阅读2010年1月1日星期一,2010年1月2日星期二。2010年1月3日星期三...等等...
我怎样才能做到这一点?
请注意,有些列具有行距,而另一些则没有。
最佳答案
尝试这个 -
var maxcols = 0;
$('table tr').each(function() {
$(this).children().length > maxcols ? maxcols = $(this).children().length : maxcols = maxcols;
});
$('table tr td:first-child').each(function() {
if ($(this).text() != '' && $(this).parent().children().length === maxcols)
alert($(this).text());
});
http://jsfiddle.net/ipr101/FyGR6/1/
关于javascript - 通读表格并显示日期,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7025008/