html的method属性,HTML
HTML
⽅法属性⽤于指定提交表单时⽤于发送数据的HTTP⽅法。 HTTP⽅法有两种,即GET和POST。 method属性可以与元素⼀起使⽤。
属性值:
GET:在GET⽅法中,提交表单后,表单值将在新浏览器选项卡的地址栏中可见。它的⼤⼩限制为⼤约3000个字符。它仅对⾮安全数据有⽤,⽽不对敏感信息有⽤。
POST:在post⽅法中,提交表单后,表单值将在新浏览器选项卡的地址栏中不可见,因为它在GET⽅法中可见。它将表单数据附加到HTTP 请求的正⽂中。没有⼤⼩限制。此⽅法不⽀持将结果添加为书签。
⽤法:
范例1:本⽰例说明了GET⽅法属性的使⽤。
HTML form method Attribute
GeeksforGeeks
HTML
Method Attribute.
action="#" method="GET" target="_blank">
First name:
placeholder="Enter first name">
Last name:
placeholder="Enter last name">
By clicking the submit button the Entered
details will be sended to "/action_page.php"
输出:
范例2:本⽰例说明了POST⽅法属性的使⽤。此⽅法将form-data作为HTTP后事务发送。
HTML form method Attribute
GeeksforGeeks
HTML
Method Attribute.
action="#" method="POST" target="_blank">
Email_id:
placeholder="Enter email_id">
Password:
placeholder="Enter Password">
Confirm Password:
placeholder="Re-enter Password">
By clicking the login button the Entered details will be sended to "/action_page.php"输出:
⽀持的浏览器:下⾯列出了HTML
⽅法“属性”⽀持的浏览器:
⾕歌浏览器
互联⽹浏览
Mozila Firefox
Safari
html中提交表单用什么属性Opera
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论