❶ html 表單一定要用submit提交嗎
不一定需要用submit提交
1. HTML提交表單
HTML提交表單簡單易操作,依靠在<form>標簽對中的<input type='submit'>提交按鈕進行請求發送和參數提交。其中form標簽的post屬性決定提交方式是get還是post。
❷ 如何用html5來創建一個簡單的Web表單,其中包含姓名、電子郵件地址和提交按鈕,使用HTML5
用html5的方法就可以實現本地存儲
<!DOCTYPEhtml>
<htmllang="en"xmlns="http://www.w3.org/1999/xhtml">
<head>
<metacharset="utf-8"/>
<title></title>
</head>
<body>
<div>name<inputtype="text"/></div>
<div>age<inputtype="text"/></div>
<div><inputtype="submit"/></div>
<script>
document.getElementsByTagName("input")[2].onclick=function(){
var_name=document.getElementsByTagName("input")[0].value
var_age=document.getElementsByTagName("input")[1].value
localStorage.setItem("name",_name);
localStorage.setItem("age",_age);
}
</script>
</body>
</html>
需要配置服務端,本地運行無效
❸ HTML5網頁前端設計中如下圖表單的代碼怎麼寫
下面是表單代碼,你直接再加屬性就可以了,表單用 table 寫比較簡單,div 太麻煩了;
<html xmlns=" http://www.dayinmandarin.com ">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>黑板</title>
</head>
<body>
<div style="width:500px;">
<h1 style="width:500px;height:50px;color:#2A8DF0;border-bottom:#2A8DF0 solid 3px; text-align:center;">用戶注冊頁面</h1>
<table cellpadding="0" cellspacing="10" style="margin:0 auto;">
<tr>
<td align="right" valign="top"><div>用戶名:</div></td>
<td><input style='width:250px' value='請輸入用戶名' /></td>
</tr>
<tr>
<td align="right" valign="top"><div>密 碼:</div></td>
<td><input style='width:250px' value='請輸入密碼' /></td>
</tr>
<tr>
<td align="right" valign="top"><div>確 認:</div></td>
<td><input style='width:250px' value='請再次輸入密碼' /></td>
</tr>
<tr>
<td align="right" valign="top"><div>姓 名:</div></td>
<td><input style='width:250px' value='請輸入真實姓名' /></td>
</tr>
<tr>
<td align="right" valign="top"><div>郵 箱:</div></td>
<td><input style='width:250px' value='請輸入電子郵箱' /></td>
</tr>
</table>
<div align="center"><input style="width:100px;height:30px;text-align:center;line-height:30px;background:#2289F0;border:#2289F0;color:white;font-weight:bold;font-size:16px;" type="submit" value="提交注冊" /></div>
</div>
</body>
</html>
❹ 求html5代碼,編寫一個form表單,實現一個學生信息輸入
<!DOCTYPEhtml>
<html>
<head>
<metaname="viewport"content="width=device-width,initial-scale=1.0">
<styletype="text/css">
input[type='radio'],
input[type='checkbox'],
label{
cursor:pointer;
}
</style>
</head>
<body>
<formaction="地址"methed="post">
學號:
<inputtype="text"name="user"placeholder="請輸入用戶名"/>
<br/>
密碼:<inputtype="text"name="pwd"placeholder="請輸入密碼"password="鍵盤"/>
<br/>
性別:
<inputtype="radio"name="sex"id="sex1"value="男"checked><labelfor="sex1">男</label/>
<inputtype="radio"name="sex"id="sex2"value="女"><labelfor="sex2">女</label/>
<br/>
電話:<inputtype="text"name="phone"placeholder="請輸入電話號碼"/>
<br/>
郵箱:<inputtype="text"name="email"placeholder="請輸入注冊郵箱"/>
<br/>
出生年月:<inputtype="text"name="birth"/>
<br/>
愛好:
<inputtype="checkbox"name="like"id="like1"value="籃球"><labelfor="like1">籃球</label/>
<inputtype="checkbox"name="like"id="like2"value="足球"><labelfor="like2">足球</label/>
<inputtype="checkbox"name="like"id="like3"value="羽毛球"><labelfor="like3">羽毛球</label/>
<br/>
<inputtype="submit"value="提交"/>
<inputtype="reset"value="重置"/>
</form>
</body>
</html>