Maison >interface Web >Tutoriel H5 >formulaire de candidature html5 css3 |
1. Le format de syntaxe de base pour créer un formulaire est le suivant :
<from action=”url 地址”method=”提交方式”name=”表单名称”> 各种表单控件 </form>
L'exemple suivant :
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. >
(1) Zone de saisie de texte sur une seule ligne797edfb94940e3e094cf185fe0ef94cfNom d'utilisateur : nom ; Numéro de compte : valeur ; numéro d'identification : longueur maximale( 2) Zone de saisie du mot de passeb84c18c8a37540ee7d59857355e32da4(3) Bouton radiofe6029296ed047b6c920e3e926c8b2e1(4) Case à cocher3e9003cb8c472764a9ca7b68e74c876a(5) Bouton normal32b17f56ff1f993edc73a662a35e44c2(6) Bouton Soumettre55533b768015287057c44a213cff96f1(7) Bouton de réinitialisation87f721c79371ebdb716c9e0fc68bc678(8) Bouton Soumettre sous forme d’image0da72a75a10c397362517abe94da35ee( 9) Champ cachée3fb4148904f5fa88924984a87a08790(10)Champ de fichierc10780f888de52d5972a15d76a50e05b(11)Type d'e-mail 6e83bfb8bab2cd8e8fb330a0f4c2687f(12)url type9c88fc9ad4fd3f5ad14376e6c71cb1df(13)tel type831624ce0325d70af3300dcc380d2e33(14)type de recherche67c37f4d7c73f15c8cf2c7ffdf1d4bf1(15)type de couleur1e352bf79373d0d85cb4135acdd50c74(16) type de numéroc60739fae520539654d1418b07e126fe
<input type=”number”name=”number1”value=”1”min=”1”max=”20”step=”4”/><br/>(17)type de plage3acf269a19006f9518af3e161a1ea1e0(18)Type de sélecteur de date9cd81d8e840d8c1875939ed00a546b04
<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. Autres éléments(1) attribut de liste
<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>
<textarea cols=”每行中的字符数”rows=”显示的行数“> 文本内容 </textarea>Exemple :
<form action=”#”method=”post”> 评论:<br/> <textarea cols=”60”rows=”8”> 评论的时候,请遵纪守法并注意语言文明。 </textarea><br/> <input type=”submit”value=”提交”/> </form>(5)élément sélectionné
<select> //<optgroup> <option>1</option> <option>2</option> <option>3</option> </select>
<form action=”#”method=”post”> 请输入用户名:<input type=”text”list=”namelist”/> <datalist id=”namelist”> <option>admin</option> <option>lucy</option> </datalist> <input type=”submit”value=”提交”/> </form>
<form action=”#”method=”get”> 请输入用户名:<input type=”text”name=”user_name”/><br/> 请选择加密强度:<keygen name=”security”/><br/> <input type=”submit”value=”提交”/> </form>Style de formulaire
<!doctype html> <html><head> <meta charset="utf-8"> <title>CSS控制表单样式</title> <style type="text/css"> body{ font-size:12px; font-family:"宋体";} body,form,input,p{ padding:0; margin:0; border:0;} form{ width:320px; height:150px; padding-top:20px; margin:50px auto; background:#f5f8fd; border-radius:20px; border:3px solid #4faccb; } p{ margin-top:15px; text-align:center; } p span{ width:40px; display:inline-block; text-align:right; } .num,.pass{ width:152px; height:18px; border:1px solid #38a1bf; padding:2px 2px 2px 22px; } .num{ background:url(images/1.jpg) no-repeat 5px center #FFF; color:#999; } .pass{ background:url(images/2.jpg) no-repeat 5px center #FFF; } .btn01,.btn02{ width:60px; height:25px; border-radius:3px; border:1px solid #6b5d50; margin-left:30px; } .btn01{ background:#3bb7ea;} .btn02{ background:#fb8c16;} </style> <link rel="stylesheet" href="Untitled-1.css" type="text/css"> </head> <body> <form action="#" method="post"> <p> 登录:<input type="tel" name="telphone" pattern="^\d{11}$" required/> </p> <p> 密码:<input type="tel" name="telphone" pattern="^\d{11}$" required/> </p> <p> <input type="button" class="btn01" value="登录"/> <input type="button" class="btn02" value="注册"/> </p> </form> </body> </html>Ce qui précède est le contenu de l'application du formulaire html5 css3 | Pour plus de contenu connexe, veuillez faire attention au site Web PHP chinois (www.php.cn) !