假设我的table的id 是table_id 然后我想给这个table中的每一行的第一列绑定一个click事件,用jquery实现

2024-12-13 04:01:47
推荐回答(4个)
回答1:

为td增加一个样式,比如test,然后$(".test").live("click",function(){});注意,因为是动态生成的表格,所以必须用live

回答2:

$("#table_id tr td:first").click(function(){
    //$(this)……
});

 把这个放到循环数据结束后 要不会因为没有加载完DOM而出现不能绑定结果

回答3:

$("#table_id tr td:first").click();
自己试试

回答4:

$("#table_id tr").each(function(){
$(this).children("td").eq(0).click(functio(){
});
});