主頁(yè) > 知識(shí)庫(kù) > html中表單提交的實(shí)現(xiàn)

html中表單提交的實(shí)現(xiàn)

熱門標(biāo)簽:地圖標(biāo)注員工作內(nèi)容 通遼地圖標(biāo)注app 中國(guó)地圖標(biāo)注城市的 智能語(yǔ)音電銷機(jī)器人客戶端 西安金倫外呼系統(tǒng) 高德地圖標(biāo)注廁所 威海語(yǔ)音外呼系統(tǒng)平臺(tái) 地圖標(biāo)注沿海城市房?jī)r(jià) 江西ai電銷機(jī)器人如何

表單提交代碼

1、源代碼分析

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
<form action="/form.html" method="GET">
    <!-- action: 表單提交的地址 -->
    <!-- method:提交保單的方法 -->
<div class="name">
    <label for="name">用戶名</label>
    <input type="text" name="name" id="name" placeholder="請(qǐng)輸入用戶名">
    <!-- placeholder是透明的提示文字 -->
</div>
<div class="password">
    <label for="password">密碼</label>
    <input type="password" name="password" id="password" placeholder="請(qǐng)輸入密碼">
</div>
<div class="sex">
    <label for="sex">性別</label>
    <input type="radio" name="sex" value="male">男
    <input type="radio" name="sex" value="female">女
</div>
<div class="city">
    <label for="city">最喜歡的城市</label>
    <select name="city" id="city">
        <option value="beijing">北京</option>
        <option value="shanghai">上海</option>
        <option value="chongqing" selected >重慶</option>
        <!-- selected 表示被選中在頁(yè)面展示的選項(xiàng) -->
    </select>
</div>

<div class="hobby">
        <label for="hobby">愛(ài)好</label>
        <input type="checkbox" name="hobby" value="read">讀書(shū)
        <input type="checkbox" name="hobby" value="flower">插花
        <input type="checkbox" name="hobby" value="sing">唱歌
        <!-- 所有選項(xiàng)name要一樣 -->
</div>
<div class="area">
    <textarea id="area" name="area" cols="30" rows="10"></textarea>
</div>
<button>button</button>
<!-- 可以提交表單 -->
<input type="submit" value="submit"> 
<!-- 可以提交表單 -->
<input type="button" value="button">
<!-- 不可以提交表單 -->
<input type="reset"  value="reset">
<!-- 對(duì)表單里面已經(jīng)輸入的內(nèi)容做重置 -->

</form>
</body>
</html>

2、終端操作

打開(kāi)終端gitbash,切換到html所在的文件夾

用命令行http-server打開(kāi)靜態(tài)服務(wù)器,打開(kāi)后會(huì)出現(xiàn)兩個(gè)ip地址。127.xxx是本地訪問(wèn)地址,125.xxx是局域網(wǎng)訪問(wèn)地址(這里的前提是已經(jīng)安裝了nodejs,并用npm安裝了http-server這個(gè)服務(wù)器)

用瀏覽器打開(kāi)html文件。用http://127.0.0.1:8080,替換本地的file文件地址。

點(diǎn)開(kāi)檢查-network-header可以看到表單提交的信息

3、get和post方式區(qū)別

  • get把提交的數(shù)據(jù)用&拼接成url,成為url對(duì)象中query的內(nèi)容。但post的url就很干凈
  • 提交數(shù)據(jù)量不同,get最多提交1k數(shù)據(jù)。超過(guò)瀏覽器的限制,數(shù)據(jù)會(huì)被截?cái)?。post理論上無(wú)限制,受服務(wù)器限制
  • get提交的數(shù)據(jù)在瀏覽器歷史記錄中,安全性不好
  • get 重在 "要", post 重在"給"

4、注意事項(xiàng)

所有input標(biāo)簽要加上name屬性,不然該數(shù)據(jù)不能正確接收。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

標(biāo)簽:河池 晉中 眉山 營(yíng)口 崇左 青海 北海 阜陽(yáng)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《html中表單提交的實(shí)現(xiàn)》,本文關(guān)鍵詞  html,中,表單,提交,的,實(shí)現(xiàn),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html中表單提交的實(shí)現(xiàn)》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于html中表單提交的實(shí)現(xiàn)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章