表單提交代碼
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í)有所幫助,也希望大家多多支持腳本之家。