1. ホーム
  2. html

[解決済み] デフォルトのフォームHTTPメソッドは何ですか?

2022-04-24 21:52:08

質問

HTMLフォームがメソッドを指定せずに送信された場合、デフォルトのHTTPメソッドは何ですか?GETですか、それともPOSTですか?

この動作は、HTMLの規格間で変更されたことがありますか?

可能であれば、W3Cの標準文書を引用してください。

解決方法は?

GETです。

ご覧ください W3C Superceded Recommendation 17.3 FORM 要素 .

抜粋

<!ATTLIST FORM
  %attrs;                              -- %coreattrs, %i18n, %events --
  action      %URI;          #REQUIRED -- server-side form handler --
  method      (GET|POST)     GET       -- HTTP method used to submit the form--
  enctype     %ContentType;  "application/x-www-form-urlencoded"
  accept      %ContentTypes; #IMPLIED  -- list of MIME types for file upload --
  name        CDATA          #IMPLIED  -- name of form for scripting --
  onsubmit    %Script;       #IMPLIED  -- the form was submitted --
  onreset     %Script;       #IMPLIED  -- the form was reset --
  accept-charset %Charsets;  #IMPLIED  -- list of supported charsets --
  >

読みやすい

HTMLフォームのGETメソッドとPOSTメソッド - 違いは何ですか?