首頁  >  文章  >  web前端  >  html5+css3 |表單的應用

html5+css3 |表單的應用

黄舟
黄舟原創
2017-02-07 13:20:461876瀏覽

1.建立表單的基本語法格式如下:

<from action=”url 地址”method=”提交方式”name=”表单名称”>
     各种表单控件
</form>

如下範例:

P212-213
<!doctype html>
<html>
<head>
<meta charset=”utf-8”>
<title>创建表单</title>
</head>
<body>
<from action=”http://www.mysite.cn/index.asp”method=”post” id=”formBox”autocomplete=”on”>
  用户名:
  <input type=”text”id=”autofirst”name=”autofirst”/><br/><br/>
  账号:
  <input type=”text”name=”zhanghao”/>
  密码:
  <input type=”password”name=”mima”/>
  <input type=”submit”value=”提交”/>
</form>
</body>
</html>

2.input元素的type屬性

(1)單行文字輸入框

(1)單行文字輸入框

用戶名: name;帳號:value;證件號碼:maxlength

(2)密碼輸入框

(3)單選按鈕

(4)復選按鈕

(4)復選選框

(5)普通按鈕

(6)提交按鈕

(7)重置按鈕

(8)圖像形式的提交按鈕

(9)隱藏域

(10)檔案域

(11)email類型

(12)url類型

(13)tel類型

(14)search類型

(15)color類型

(16)number類型

<input type=”number”name=”number1”value=”1”min=”1”max=”20”step=”4”/><br/>

(17)range型

(18)Date pickers類型

<form action=”#”method=”get”>
  <input type=”date”/>;
  <input type=”month”/>;
  <input type=”week”/>;
  <input type=”time”/>;
  <input type=”datetime”>
  <input type=”datetime-local”/>
  <input type=”submit”value=”提交”/>
</form>

3.其它元素

(1)list屬性

<form action=”#”method=”get”>
请输入网址:<input type=”url”list=”url_list”name=”weburl”/>
<datalist id=”url_list”>
  <option label=”新浪”value=”http://www.sina.com.cn”></option>
  <option label=”搜狐”value=”http://www.sohu.com.cn”></option>
  <option label=”传智”value=”http://www.itcast.cn/”></option>
</datalist>


(2)multiple屬性

<form action=”#”method=”get”>
电子邮箱:<input type=”email”name=”myemail”multiple=”true”/>
上传照片:<input type=”file”name=”selfile”multiple=”true”/><br/><br/>
<input type=”submit”value=”提交“/>
</form>


例子:

<form actiom=”#”method=”get”>
请输入邮政编码:<input type=”text”name=”code”pattern=”[0-9]{6}”placeholder=”请输入6位数的邮政编码”/>
<input type=”submit”value=”提交”/>
</form>

(5)select元素

<textarea cols=”每行中的字符数”rows=”显示的行数“>
 文本内容
</textarea>

(6)datalist元素

<form action=”#”method=”post”>
评论:<br/>
     <textarea cols=”60”rows=”8”>
评论的时候,请遵纪守法并注意语言文明。
     </textarea><br/>
     <input type=”submit”value=”提交”/>
</form>

(7)keygen元素
rrrereeecom ,更多相關內容請關注PHP中文網(www.php.cn)!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn