下面小編就為大家?guī)?lái)一篇html5表單及新增的改良元素詳解。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。
XML/HTML Code
<!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)訪問(wèn)該表單元素-->
<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)訪問(wèn)該表單元素
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>
念念不忘,必有回響。技術(shù)成就夢(mèng)想!
以上這篇html5表單及新增的改良元素詳解就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考