Are the PUT, DELETE, HEAD, etc methods available in most web browsers?

I've seen a couple questions around here like How to debug RESTful services, which mentions:

Unfortunately that same browser won't allow me to test HTTP PUT, DELETE, and to a certain degree even HTTP POST.

I've also heard that browsers support only GET and POST, from some other sources like:

  • http://www.packetizer.com/ws/rest.html
  • http://www.mail-archive.com/jmeter-user@jakarta.apache.org/msg13518.html
  • http://www.xml.com/cs/user/view/cs_msg/1098
  • However, a few quick tests in Firefox show that sending PUT and DELETE requests works as expected -- the XMLHttpRequest completes successfully, and the request shows up in the server logs with the right method. Is there some aspect to this I'm missing, such as cross-browser compatibility or non-obvious limitations?


    HTML forms (up to HTML version 4 and XHTML 1) only support GET and POST as HTTP request methods. A workaround for this is to tunnel other methods through POST by using a hidden form field which is read by the server and the request dispatched accordingly.

    However, GET , POST , PUT and DELETE are supported by the implementations of XMLHttpRequest (ie AJAX calls) in all the major web browsers (IE, Firefox, Safari, Chrome, Opera).


    HTML forms support GET and POST. (HTML5 at one point added PUT/DELETE, but those were dropped.)

    XMLHttpRequest supports every method, including CHICKEN, though some method names are matched against case-insensitively (methods are case-sensitive per HTTP) and some method names are not supported at all for security reasons (eg CONNECT).

    Browsers are slowly converging on the rules specified by XMLHttpRequest, but as the other comment pointed out there are still some differences.


    XMLHttpRequest is a standard object in the JavaScript Object model.

    According to Wikipedia, XMLHttpRequest first appeared in Internet Explorer 5 as an ActiveX object, but has since been made into a standard and has been included for use in JavaScript in the Mozilla family since 1.0, Apple Safari 1.2, Opera 8.0, and IE 7.0.

    The open() method on the object takes the HTTP Method as an argument - and is specified as taking any valid HTTP method (see the item number 5 of the link) - including GET , POST , HEAD , PUT and DELETE , as specified by RFC 2616.

    As a side note IE 7–8 only permit the following HTTP methods: "GET", "POST", "HEAD", "PUT", "DELETE", "MOVE", "PROPFIND", "PROPPATCH", "MKCOL", "COPY", "LOCK", "UNLOCK", and "OPTIONS".

    链接地址: http://www.djcxy.com/p/7040.html

    上一篇: HTTPS URL是否被加密?

    下一篇: 在大多数Web浏览器中都可以使用PUT,DELETE,HEAD等方法吗?