HTML form 表单提交方式get和post的区别

method属性规定如何发送表单的数据。有两种提交的方法分别为get和post。

1、get:提交的数据量要小于1024字节,表单提交时表单域数值(表单请求的信息:账号、密码…)将在地址栏显示。


<html>
<head>
    <title>测试get提交数据方法title>
head>
<body>
    <center>
        <form action="https://www.baidu.com" method="get">
            <p>用户名:<input type="text" name="name"/>p>
            <p>密码:<input type="password" name="pwd"/>p>
            <input type="submit" value="登录">

        form>
    center>
body>
html>

登录主界面:
HTML form 表单提交方式get和post的区别_第1张图片

跳转页面:
HTML form 表单提交方式get和post的区别_第2张图片

2、post:传递的数据量不受限制,表单提交时表单的域值(表单请求的信息:账号、密码…)不会在地址栏显示,安全性能较高,对信息进行了隐藏,一般在开发中采用post。


<html>
<head>
    <title>测试post提交数据方法title>
head>
<body>
    <center>
        <form action="https://www.baidu.com" method="post">
            <p>用户名:<input type="text" name="name"/>p>
            <p>密码:<input type="password" name="pwd"/>p>
            <input type="submit" value="登录">

        form>
    center>
body>
html>

登录主界面:
HTML form 表单提交方式get和post的区别_第3张图片

跳转页面:
HTML form 表单提交方式get和post的区别_第4张图片

你可能感兴趣的:(html,form,表单,post,get,html)