$("td").click(function(){
//td的id
alert($(this).attr("id"));
//tr的id
alert($(this).parent().attr("id"));
});
$("td").click(function(){
var trId = $(this).closest("tr").attr("id");
$("得到你要操作的元素").attr("src",$("得到你要操作的元素").attr("src")+trId+".xxx");
});
jQuery("table tr").click(function (){
alert(jQuery(this).attr("id"));
});