警报表数据

时间:2014-04-01 08:38:37

标签: javascript jquery

如何提醒TableData是onclick id: key

$('#sampleTbl tr').each(function(row, tr){
        TableData = TableData 
            + $(tr).find('td:eq(0)').text() + ' '  // Task No.
            + $(tr).find('td:eq(1)').text() + ' '  // Date
            + $(tr).find('td:eq(2)').text() + ' '  // Description
            + $(tr).find('td:eq(3)').text() + ' '  // Task
            + '\n';
    });

我只是想知道它是否在那些tr中得到了文本。

2 个答案:

答案 0 :(得分:0)

这样的东西?

//insert this code within each function:
if (!$(this).text().trim().length) {
        //do the stuff here
    }

答案 1 :(得分:0)

$('#sampleTbl tr').each(function(row, tr){
        TableData = TableData 
            + $( this ).find('td:eq(0)').text() + ' '  // Task No.
            + $( this ).find('td:eq(1)').text() + ' '  // Date
            + $( this ).find('td:eq(2)').text() + ' '  // Description
            + $( this ).find('td:eq(3)').text() + ' '  // Task
            + '\n';
    });