$('#delete').click(function() {

$('.checkbox:checked').each(function(index, item) {

var index = $(item).parents('tr').find('.index').text();

location.href = '/Shoppingmall/admin/deleteItem?index=' + index;

});

});


index가 여러개인데 받아주는곳에서는 마지막 index하나만 받거든? 왜그런지좀 알려주셈