您好,登錄后才能下訂單哦!
這篇文章主要介紹了html5表單及新增改良元素的示例分析,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
示例:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <!--表單內(nèi)元素的form屬性:為元素指定一個(gè)form屬性,屬性值為該表單的id--> <form id="testform"> <input type="submit" /> </form> <textarea form="testform"></textarea> <br /><hr /> <!--表單內(nèi)元素的formaction屬性:可以提交到不同頁(yè)面--> <form id="form1" action="test.aspx"> <input type="submit" name="s1" value="內(nèi)部提交到test2" formaction="test2.aspx" /> <input type="submit" /> </form> <!--formmethod:可以為每個(gè)表單元素指定不同的提交方法--> <form id="form2" action="test.aspx"> name:<input type="text" name="name" /><br /> <input type="submit" value="post方式提交" formmethod="post"/> <input type="submit" value="get方式提交" formmethod="get"/> </form><br/><hr /> <!--formenctype:可以指定不同的編碼方式--> <form action="test2.aspx" method="post"> <input type="text" name="name" id="name" value="test" /> 文件:<input type="file" name="files" /> <input type="submit" value="上傳" formaction="test.aspx" formenctype="multipart/form-data"/> <input type="submit" value="提交" /> </form><br /><hr /> <!--formtarget:提交后再何處打開頁(yè)面--> <form action="test.aspx"> <input type="submit" name="s1" value="s1本頁(yè)打開" formaction="test2.aspx" formtarget="_self"/>提交到test2 <input type="submit" name="s" value="s新頁(yè)打開" formaction="test.aspx" formtarget="_blank"/>提交到test </form><hr /> <!--autofocus:自動(dòng)獲得光標(biāo)焦點(diǎn)--> <input type="text" autofocus /><br /> <!--control:通過(guò)該屬性來(lái)訪問該表單元素--> <form > <label id="label"> 郵編:<input id="txtzip" maxlength="6" /><small>請(qǐng)輸入6位數(shù)字</small> </label> <input type="button" value="設(shè)置默認(rèn)值" onclick="setValue()" /> </form> <!--placeholder:未輸入狀態(tài)的輸入提示--> <input type="text" placeholder="請(qǐng)輸入內(nèi)容" /><br /> <!--list:單行文本框的list屬性,屬性值為datalist的id。 autocomplete:自動(dòng)完成--> list屬性:<input type="text" list="mylist" autocomplete="on"/> <datalist id="mylist" > <option value="第一">第一</option> <option value="第二">第二</option> <option value="第三">三</option> </datalist><br /> <!--pattern:設(shè)置正則表達(dá)式驗(yàn)證--> <form> 輸入一個(gè)字母與三個(gè)大寫字母:<input type="text" pattern="[0-9][A-Z]{3}" required=""/> <input type="submit" /> </form><br /> <!--indeterminate:說(shuō)明復(fù)選框處于尚未明確是否選取狀態(tài)--> <input type="checkbox" indeterminate id="cb" />indeterminate<br /> <!--image的height和width設(shè)置圖片高寬--> 設(shè)置圖片寬高:<input type="image" src="img/webp.jpg" alt="編輯" width="23" height="23" /><br /> <!--textarea:maxlength和wrap屬性:hard換行也要指定cols,soft不換行--> <form action="test.aspx" method="post"> <textarea name="name" maxlength="10" rows="5" cols="5" wrap="hard"></textarea> <input type="submit" value="提交" /> </form><br /> <!--url類型:只能提交url地址格式--> url:<input type="url" name="url" required=""/><input type="submit" /><br /> email:<input type="email" name="email" required=""/><input type="submit" /><br /> date(谷歌瀏覽器):<input type="date" name="date" /><br /> time(谷歌瀏覽器):<input type="time" name="time" /><br /> datetime-local:<input type="datetime-local" name="datetime" value="2016-05-26T22:31:30"/><br /> <!--日期時(shí)間類型的step屬性:?jiǎn)螕粽{(diào)整時(shí)對(duì)選擇值多大限定--> step:<input type="date" step="3" /><br /><hr /> number:<input type="number" value="25" min="10" min="20" max="30" step="2" /><br /> range:<input type="range" value="25" min="10" max="100" step="5" /><br /> search:<input type="search"/><br /> tel:<input type="tel" /><br /> color:<input type="color" /><br /> <hr /> output元素的追加: <form id="testform"> 請(qǐng)選擇一個(gè)值:<input type="range" id="range" min="5" max="100" step="5" value="10" onchange="out();"/> <output id="out">10</output> </form> </body> </html> <script type="text/javascript"> function setValue(){ var lable=document.getElementById("label"); var txtbox=lable.control;//通過(guò)control該屬性來(lái)訪問該表單元素 txtbox.value="213001"; } //indeterminate測(cè)試設(shè)置為true var cb=document.getElementById("cb"); cb.indeterminate=true; //選擇的值output輸出 function out(){ Debug; var number=document.getElementById("range").value; document.getElementById("out").value=number; } </script>
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“html5表單及新增改良元素的示例分析”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。