亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

HTML ? ?? ??

HTML? ??? ?? ??

HTML5? <form> ? <input> ??? ? ?? ??? ??? ???????.

<form>? ??:

?? ??

?? ??

<input> ? ??:

autocomplete

autofocus

form

formaction

formenctype

formmethod

formnovalidate

formtarget

?? ? ??

??

min ? max

??

??(?? ???)

?? ???

??

??

/ autocomplete ??

autocomplete ??? ?? ?? ?? ??? ?? ?? ??? ??? ?? ?????.

???? ?? ???? ??? ??? ???? ????? ?? ??? ??? ??? ???? ???.

?: ?? ?? ??? ?? ???? ???? ? ??? ?? ????? ????? ? ????.

??: ?? ??? <form> ???? ??? ???, ??, URL, ??, ???, ????, ?? ???, ?? ? ??? ?? <input> ???? ?????.

<form> novalidate ??

novalidate ??? ?? ?????.

novalidate ??? ?? ? ?????. ?? ?? ?? ?? ??? ???? ????? ? ???.

<input> autofocus ??

autofocus ??? ?? ?????.

autofocus ??? ??? ????. ???? ???? ???? ???? ???? ????.

<input> ?? ??

?? ??? ?? ??? ??? ?? ??? ??? ?????.

?: ? ? ??? ??? ????? ???? ??? ??? ?????.

<input> formaction ??

formaction ??? ?? ??? URL ??? ???? ? ?????.

formaction ? ??? <form> ??? action ??? ??????.

??: formaction ??? type="submit" ? type="image"? ?????.

<input> formenctype ??

formenctype ??? ???? ??? ??? ???? ???? ?????(?? ??? method="post" ???? ??).

formenctype ?? ?? ??? enctype ??? ??????.

??: ? ??? type="submit" ? type="image"? ?? ?????.

<input> formmethod ??

formmethod ??? ??? ???? ??? ?????.

formmethod ??? <form> ??? method ??? ??????.

??: ? ??? type="submit" ? type="image"? ?? ??? ? ????.

<input> formnovalidate ??

novalidate ???

novalidate ??? ?????. ; ?? ?? ? ??? ???? ??? ??? ????.

formnovalidate ??? <form> ??? novalidate ??? ??????.

??: formnovalidate ??? type="submit

? ?? ?????.

<input> formtarget ??

formtarget ??? ?? ?? ???? ??? ? ??? ???? ???? ?????.

formtarget ??? <form> ??? target ??? ??????.

??: formtarget ??? type="submit" ? type="image"? ?? ?????.

<input> ?? ? ?? ??

?? ? ?? ??? ??? <input> ??? ???? ??? ??? ??? ?????. ??.

??: ?? ? ?? ??? ??? ??? <input> ???? ?????.

?: ???? ????? ??? ?? ??? ?? ?????. ???? ??? ??? ??? ?? ???? ??? ? ???? ??? ??? ?????. ??? ??? ??? ????? ???? ??? ? ? ??? ??? ??? ??? ? ????. ???? ?? ?? ???? ?? ??? ???? ??? ?????(???? ??? ????).

<input> ?? ??

?? ??? ?? ??? ??? ??? ?????. datalist? ?? ??? ?? ?? ?????.

<input> min ? max ??

min, max ? step ??? ??? ??? ?? ??? ?? ??? ???? ? ?????. ?? ??.(??)

??: min, max ? step ??? ?? ???, ?? ? ??? ?? <input> ?? ??? ?????.

<input> ?? ??

?? ??? ?? ?????.

?? ??? <input> ; ??? ?? ?? ??? ? ????.

??: ?? ??? ??? ? ??? ?? <input> ?? ??? ?????. : ??? ? ??.

<input> ?? ??

pattern ??? <input> ??? ?.

??: ?? ??? ???, ??, URL, ????, ???, ???? ?? <input> ?? ??? ?????.

?: ?? ?? ?? ??.

<input> ?? ??? ??

?? ??? ??? ?? ???? ???? ?? ???? ??? ?????. .

???? ?? ???? ?? ?? ??? ??? ????? ?????.

??: ?? ??? ??? ???, ??, URL, ??, ???, ???? ?? <input> ?? ??? ?????.

<input> ?? ??

?? ??? ?? ?????.

?? ??? ?? ?? ???? ???. ?? ??? ????(??? ? ??).

??: ?? ??? ???, ??, URL, ??, ???, ????, ?? ???, ??, ???, ??? ? ??? ?? <input> ?? ??? ?????.

<input> ?? ??

?? ??? ?? ??? ??? ?? ??? ?????.

step="3"? ?? ??? ??? -3, 0, 3, 6 ????.

?: step ??? max ? min ??? ?? ???? ??? ? ????. ?? ?.

??: ?? ??? ??, ??, ??, ??/??, ??/??-??, ?, ?? ? ? ??? ?? ?????.


????? ?? ???? ? ?? ??? ??????. ??? ?? ?? ??? ?? ?? ????? ?? ??? ??? ?? ? ??? ??? ? ????

????


???? ??
||
<!DOCTYPE html><html><head> <meta charset="utf-8"> <title></title> </head> <body> <!-- placeholder:用于在文本框未輸入時(shí)提示作用 autofocus:用于控件自動(dòng)獲取焦點(diǎn) --> <input type="search" name="key" value="" results="s" placeholder="君樂寶" autofocus="true"> <input type="button" name="" value="搜索"> <!-- novalidate:在控件中加入了required、emial、url等驗(yàn)證后,如果想讓這些驗(yàn)證失效,可以在表單中將novalidate設(shè)置為tyue --> <form action="upload.php" method="post" accept-charset="utf-8" id="form1" novalidate="true"> <br/><br/> <!-- required:必填 autocomplete:在網(wǎng)頁(yè)的文本框中輸入部分內(nèi)容或者雙節(jié)時(shí),經(jīng)常會(huì)看到在下面顯示輸入過的內(nèi)容, 這就是html5的新特性:自動(dòng)完成,如果不想使用此功能,將其設(shè)置為off即可 --> <input type="text" name="UserName" value="" required autocomplete="off"> <br/><br/> <!-- multiple:在選擇文件時(shí),默認(rèn)只能單選,加上這個(gè)屬性后,則可以使用鼠標(biāo)選中多個(gè)文件進(jìn)行上傳 --> 選擇文件 <input type="file" name="upload" value="" multiple="multiple"> <br/><br/> <!-- list:這個(gè)屬性要和datalist元素一起使用,指定此文本框的可選擇項(xiàng),另外其相較于select的優(yōu)點(diǎn)在于還可以輸入 --> 區(qū)號(hào): <input type="text" name="age" value="" list="list1"> <br/><br/> <datalist id="list1"> <option value="0312">保定</option> <option value="0311">石家莊</option> <option value="010">北京</option> <option value="0313">唐山</option> </datalist> <br/><br/> <!-- formaction:可以更改點(diǎn)擊此按鈕式提交到服務(wù)器的處理程序 formmethod:可以更改向服務(wù)器提交數(shù)據(jù)的方式 --> <input type="submit" name="subsave" value="提交"><br/><br/> <input type="submit" name="subresset" value="更改" formaction="1.php" formmethod="get"> </form> </body> </html>