我目前在选中时突出显示表格行,但在其中一个单元格中我有一个按钮。当我单击按钮时,我正在触发表格行单击事件。有没有可能把两者分开?
我的两个电话目前看起来像这样:
$('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>
知道如何阻止按钮单击事件触发行单击事件吗?