$('.delete').click(function(e){
var 글번호=e.target.dataset.id;
var 지금누른거 = $(this);
$.ajax({
method:'DELETE',
url:'/delete',
data: {id: 글번호}
}).done(function(결과){
console.log(결과);
window.location.href ='/list/1';
}).fail(function(a,b,c){
console.log(a,b,c,);
});
})
삭제는 잘되는데 성공후 페이지 이동이안되네요