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.其它元素
<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>
<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)!