方法属性 HTML 方法属性用于指定提交表单时用于发送数据的 HTTP 方法。 HTTP 方法有两种,即GET和POST 。 method 属性可以与元素一起使用。属性值: GET:在GET方法中,提交表单后,表单值将在新浏览器选项卡的地址栏中可见。它有大约 3000 个字符的限制大小。它仅适用于非安全数据,不适用于敏感信息。 POST:在 post 方法中,提交表单后,表单值在新浏览器选项卡的地址栏中将不可见,因为它在 GET 方法中可见。它将表单数据附加到 HTTP 请求的正文中。它没有大小限制。此方法不支持为结果添加书签。 支持的标签: <形式> 句法: 示例 1:此示例说明了 GET 方法属性的使用。 html HTML form method Attribute GeeksforGeeks HTML Method Attribute. First name: Last name: By clicking the submit button the Entered details will be sended to "/action_page.php" html HTML form method Attribute GeeksforGeeks HTML Method Attribute. Email_id: Password: Confirm Password: By clicking the login button the Entered details will be sended to "/action_page.php" 输出: 示例 2:此示例说明了 POST 方法属性的使用。此方法将表单数据作为 HTTP 后事务发送。 html HTML form method Attribute GeeksforGeeks HTML Method Attribute. Email_id: Password: Confirm Password: By clicking the login button the Entered details will be sended to "/action_page.php" 输出: 支持的浏览器: 谷歌浏览器 IE浏览器 火狐浏览器 苹果浏览器 歌剧