$("table tr").each(function(i){
$("table tr").eq(i).find("td").each(function(k){
$("table tr").eq(i).find("td").eq(k).click(function(){
alert(i);alert(k)
})
})
})
each(数组,function(key,value){})
$("#tableContent>tbody>tr:gt(1)").each(function(i) {
var $tdArray = $("#tableContent>tbody>tr:gt(1)").eq(i).find("td");
$tdArray.each(function() {
var a = $tdArray.index($(this)); //4
var b = $(this).text();
//列索引大于4的列进行分数颜色变更
if ($(this).text() != '--' && parseInt($(this).text()) < 85 && $tdArray.index($(this)) > 4) {
$(this).css("color", "red");
}
});
});