如何使用Ajax删除?
$(document).on('click', '#delete', function () {
id = $(this).prop('data-id');
$.delete('/destroy', {id: id}, function (){
alert('delted');
})
});
我要删除一行,但是我在控制台中看到此错误
TypeError:$ .delete不是函数