jQuery单击表格单元格事件

时间:2011-06-09 09:26:30

标签: jquery html-table cell

我有一个像下面这样的HTML代码

<tbody>
  <tr id="info">
    <td class="name">Joe</td>
    <td class="surname">White</td>
    <td class="age">25</td>
 </tr>
</tbody>

并且有一个像这样的jQuery代码:

$("tr#info").click(function() {        // function_tr
  $(this).css("background-color","yellow");
});

$("tr#info td").click(function() {     // function_td
  $(this).css("font-weight","bold");
});

当我点击td时,function_td工作正常但function_tr也有效。
如何防止function_tr

2 个答案:

答案 0 :(得分:12)

您需要使用event.stopPropagation()

$("tr#info td").click(function(e){     //function_td
  $(this).css("font-weight","bold");
  e.stopPropagation();
});

答案 1 :(得分:5)

$("tr#info td").click(function(e){     //function_td
  $(this).css("font-weight","bold");
  e.stopPropagation();
});

http://api.jquery.com/event.stopPropagation/