The type of the request, "POST" or "GET". Defaults to "GET". Other request types, such as "PUT" and "DELETE" can be used, but they may not be supported by all browsers.
그래서 나온게 꼼수가...
data: {'_method': 'delete'}
form 태그로 전송시에는 <inputtype="hidden"name="_method"value="DELETE">
이런식으로 _method 파라미터에 delete, put 을 넣고, ajax 은 post 로 넘기는 거죠.