如何从行内容产品名称,条形码,数量和购买价格的行中获取特定内容。我将使用此jquery删除特定行
$('#Delete').live('click',function(row) {
$(this).closest("tr").removeClass("selected");
$(this).addClass("selected");
/**/
var href = $(this).attr('href');
$(this).closest('tr').toggleClass('highlight');
$('tr').click(function(){$(this).effect("highlight", {}, 3000);});
var button = $(this);
var ok=confirm("You really want to delete?");
if(ok)
{
$(this).closest("tr").remove(); // remove row
}
return false; // prevents default behavior
});
答案 0 :(得分:0)
IM使用此功能:
function todoDelete(id) {
$.ajax({
url: '/todo/delete/' + id,
success: function() {
$('#update_' + id).css('backgroundColor', '#ff6666');
$('#update_' + id).fadeOut(250);
}
});
}
但你可以修改:
$('a.delete').click(function(link){
var row = $(link).parent('tr');
var id = row.children('td.id').html(); // append id class, there is your id
$.ajax({
url: '/delete/' + id,
success: function() {
row.css('backgroundColor', '#ff6666');
row.fadeOut(250);
}
});
}