0

我的代码中有以下表结构

<tr>
  <td>Text 1 </td>
  <td>Text 2 </td>
  <td> <span class="edit" onclick="EditAccountInfo(id1)" /> </td>
</tr>
<tr>
  <td>Text 1 </td>
  <td>Text 2 </td>
  <td> <span class="edit" onclick="EditAccountInfo(id2)" /> </td>
</tr>

单击 中的跨度时<td>,我想突出显示选定的行 ( <tr>)。我在 javascript 函数中使用以下代码

function EditAccountInfo(id)
{
  $(this).closest('tr').css("background-color", "red");
}

我没有收到任何错误并$(this).closest('tr')返回一个有效对象,但背景颜色样式未应用于<tr>.

我究竟做错了什么?

4

3 回答 3

1

thiswindow因为您使用的是内联事件处理程序。我会推荐一种更不显眼的方法:

<span class="edit" data-account-id="id1" />

$(document).on('click', '.edit', function() {
    var $tr = $(this).closest('tr');
    var id = $(this).data('account-id');
    //...
});
于 2013-11-13T19:45:18.103 回答
0
$('#my-table').on('click', '.edit', function () {
    $(this).closest('tr').css('backgroundColor','red');
});
于 2013-11-13T19:47:58.543 回答
0

尝试

$(document).ready(function () {
    $('td').click(function(){
        $(this).parent().css("background","red");
    });
});
于 2013-11-13T19:45:49.760 回答