$(".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。让我不确定