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

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

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

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

});

});


바로 location으로 안쏘고 ajax써서하니가 되더라고...