jQuery에서 PUT / DELETE 요청을 보내는 방법은 무엇입니까? GET:$.get(..) POST:$.post().. 무엇에 대해 PUT/DELETE? ajax 메소드를 사용할 수 있습니다 . $.ajax({ url: '/script.cgi', type: 'DELETE', success: function(result) { // Do something with the result } }); $.ajax 작동합니다. $.ajax({ url: 'script.php', type: 'PUT', success: function(response) { //... } }); jQuery를 확장하여 PUT 및 DELETE에 대한 바로 가기를 만들 수 있습니다. jQuery.each( [ "put", "delete..