Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML method 属性


定义和用法

The method 属性指定如何发送表单数据(表单数据将发送到 action 属性中指定的页面)。

表单数据可以作为 URL 变量发送(使用 method="get")或作为 HTTP post 事务发送(使用 method="post")。

关于 GET 的说明

  • 将表单数据追加到 URL 中,以名称/值对的形式。
  • URL 的长度有限(大约 3000 个字符)。
  • 切勿使用 GET 发送敏感数据!(将在 URL 中可见)。
  • 对于用户希望将结果添加书签的表单提交很有用。
  • GET 适用于非安全数据,例如 Google 中的查询字符串。

关于 POST 的说明

  • 将表单数据追加到 HTTP 请求的主体中(数据不会显示在 URL 中)。
  • 没有大小限制。
  • 使用 POST 的表单提交无法添加书签。

适用于

The method 属性可以在以下元素上使用

元素 属性
<form> method

示例

示例

使用“get”方法提交表单

<form action="/action_page.php" method="get">
  姓氏: <input type="text" name="fname"><br>
  名字: <input type="text" name="lname"><br>
  <input type="submit" value="提交">
</form>
自己试试 »

浏览器支持

属性
method

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.