表td上的jQuery委托除了第一个td

时间:2014-05-26 11:54:03

标签: javascript jquery html css

我正在尝试将点击事件委托给除{td}以外的所有td。我尝试了以下代码,但没有一个有效:

$(function(){
   $('#table1').on('click','td:gt(0)',function(){
      alert($(this).text());
   });
});
$(function(){
   $('#table1').on('click','td:not(:first)',function(){
      alert($(this).text());
   });
});
$(function(){
   $('#table1').on('click','td:not(:nth-child(1))',function(){
      alert($(this).text());
   });
});

更新

好的抱歉,最后一个正在运行。我不会删除这个问题以防其他人需要。

0 个答案:

没有答案