0

从表中删除行时,我想更改行的背景颜色(变为红色)。

到目前为止,这是我的代码:

$('.delete').click(function(){
    $id=$(this).attr('id');
    $row = $(this).parents('tr:first');
    $.ajax({
        url:'admin/delete_post',
        dataType:'json',
        type:'POST',
        data:'id=' + $id,
        error:function(){
            alert('There was an error');
        },
        success:function(data){
            $row.fadeOut(600,function(){
                $(this).remove();
            });
        }

    })
});

编辑:包括标记。

<tr>
    <td>abc</td>
    <td>
       <div class="controls ">
         <textarea class="input-xlarge span10" name="content" id="textarea" rows="5"                       
         cols="45">text</textarea>
       </div></td>
    <td>
      <a class="btn delete" id="58"><i class="icon-trash"></i> Delete</a>
      <a class="btn save" ><i class="icon-ok"></i> Save</a>
    </td>
</tr>
4

2 回答 2

2
success:function(data){
     $row.find('td').css('backgroundColor', 'red').end().fadeOut(600,function(){
          ...
     });
}
于 2012-06-14T10:28:42.473 回答
0

在你的帖子里没有唱的$this,我觉得应该的this

$row.css('background', 'red')
    .fadeOut(600,function(){
          $(this).remove();
    });
于 2012-06-14T10:28:37.013 回答