13

我目前在选中时突出显示表格行,但在其中一个单元格中我有一个按钮。当我单击按钮时,我正在触发表格行单击事件。有没有可能把两者分开?

我的两个电话目前看起来像这样:

$('table.table-striped tbody tr').on('click', function () {
   $(this).find('td').toggleClass('row_highlight_css');
}); 


$(".email-user").click(function(e) {
    e.preventDefault();
    alert("Button Clicked");
});

我的 HTML 如下所示:

<table class="table table-bordered table-condensed table-striped">
  <thead>
    <tr>
      <th>col-1</th>
      <th>col-2</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Some Data</td>
      <td><button class="btn btn-mini btn-success email-user" id="email_123" type="button">Email User</button></td>
    </tr>
  </tbody>
</table>

知道如何阻止按钮单击事件触发行单击事件吗?

4

3 回答 3

18

你必须使用stopPropagation

$(".email-user").click(function(e) {
    e.preventDefault();
    e.stopPropagation();
    alert("Button Clicked");
});

(另请参阅:event.stopPropagation 和 event.preventDefault 有什么区别?

于 2012-11-27T16:52:27.833 回答
0

我相信这是由事件冒泡引起的,请尝试e.stopPropagation();在之后使用e.preventDefault();

于 2012-11-27T16:52:20.307 回答
0

试试这个:

$('.table-striped').find('tr').on('click', function() {
    $(this).find('td').toggleClass('row_highlight_css');
});

$(".email-user").on('click', function(e) {
    e.preventDefault();
    e.stopPropagation();
});​
于 2012-11-27T17:58:48.343 回答