0

我试图得到最后一个 tr 然后最后一个 td

  var lastimageId = $("#GVUserWebDetail tr:last").children("td:first").html();

但 null 是返回

请给出任何解决方案

4

1 回答 1

0

我试图得到最后一个tr 然后最后一个td

如果您试图获取最后一行和单元格,如何:

$(function()
{
    var bottomRightCell = $("#GVUserWebDetail tr:last-child td:last-child");

    var message = 'id: ' + bottomRightCell.attr('id') + '\n';
    message += 'text: ' + bottomRightCell.text();

    alert(message);
});​

jsFiddle 演示

于 2012-06-08T10:55:19.680 回答