$(".csstablelisttd").live('mousedown', function (e)
{ var rowIndex = $(this).closest("tr").index();
var colIndex = $(e.target).closest('td').index();
alert($('.csstextheader').eq(rowIndex).find('td').eq(colIndex).find('span').attr('id'));
});
//我必须分别找到包含rowIndex和colIndex的单元格的span id。 让我不确定
答案 0 :(得分:2)
删除.eq(rowIndex)
。
alert($('.csstextheader').find('td').eq(colIndex).find('span').attr('id'));