一、找出table下某个tr的td中的超链接,点击触发超链接事件
1、 $("#id").children("td").eq(4).find("a").click(function(){
window.location.href = this;
});
$("#id:nth-child(5) a").click();
2、$("#id").find("td").first().find("a").click(function(){
window.location.href = this;
});
$("#id td:nth-child(1) a").click();
if($("#id").length <= 0){
alert("该行不存在!");
}