从表中删除行时,我想更改行的背景颜色(变为红色)。
到目前为止,这是我的代码:
$('.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>