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 <input> formmethod 属性

❮ HTML <input> 标签

示例

第二个提交按钮将覆盖表单的 HTTP 方法

<form action="/action_page.php" method="get">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="lname">Last name:</label>
  <input type="text" id="lname" name="lname"><br><br>
  <input type="submit" value="Submit">
  <input type="submit" formmethod="post" value="Submit using POST">
</form>
自己尝试 »

定义和用法

The formmethod 属性定义将表单数据发送到操作 URL 的 HTTP 方法。

The formmethod 属性将覆盖 method 元素的属性。

注意: The formmethod 属性可与 type="submit" type="image" 结合使用。

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

关于“get”方法的说明

  • 此方法将表单数据附加到 URL 中,以名称/值对的形式。
  • 此方法适用于用户想要将结果添加到书签的表单提交。
  • 您可以放置在 URL 中的数据量是有限的(浏览器之间有所不同),因此,您无法确保所有表单数据都能正确传输。
  • 切勿使用“get”方法传递敏感信息!(密码或其他敏感信息将在浏览器的地址栏中可见)

关于“post”方法的说明

  • 此方法将表单数据作为 HTTP POST 事务发送。
  • 使用“post”方法提交的表单无法添加到书签。
  • “post”方法比“get”方法更强大和安全,“post”方法没有大小限制。

浏览器支持

表格中的数字指定完全支持该属性的第一个浏览器版本。

属性
formmethod 10.0 5.1 10.6

语法

<input formmethod="get|post">

属性值

描述
get 默认值。将表单数据附加到 URL 中,以名称/值对的形式:URL?name=value&name=value
post 将表单数据作为 HTTP POST 事务发送

❮ HTML <input> 标签
×

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.