Html from 標籤

Html from 標籤html

<html>
<body>
    <!-- form 提交表單設置 -->
    <form>
          <input type="text" />
          <input type="password" />
          <input type="button" value="登陸"/>
    </form>
    
    <!-- action="http://xxx"指向後臺發送的某個位置 -->
    <form action="http://xxx">
        <!-- name="xxx" 將輸入框指定key引用使用 -->
        <input type="text" name="user"/>
        <input type="password" name="passwd"/>
        <input type="submit" value="登陸"/>
    </form>
    
    <!-- method="POST"修改請求形式,默認GET -->
    <form action="http://xxx" method="POST">
            <input type="text" name="user"/>
            <input type="password" name="passwd"/>
            <input type="submit" value="登陸"/>
    </form>
    
    <!-- enctype="application/x-www-form-urlencoded" 表示本地上傳文件一點點發給服務器 -->
    <from enctype="application/x-www-form-urlencoded">
            <!-- type="file"上傳文件、name="xxx" 標識後端處理的文件名 -->
            <input type="file" name="xxx">
    </from>
</body>
</html>
GET形式:點擊提交後,GET會把全部輸入數據拼接到URL內在發送,請求體沒有內容,將內容添加到URL內。
POST形式:點擊提交後,PSOT會把數據放在內容,將數據所有存放請求體內。

注:區別在於數據存放的位置不一樣,體現形式不一樣,沒有安全一說,抓包所有可見。
GET與POST

 

效果提交表單後端

相關文章
相關標籤/搜索