我尝试获得最后一个tr然后最后一个td
var lastimageId = $("#GVUserWebDetail tr:last").children("td:first").html();
但返回null
请提供任何解决方案
答案 0 :(得分: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);
});