国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

?? ??

?? ?? ??

HTML5? ? ???? ??? ?? ???? ??, ?? ??? ??, ?? ?? ??, ?? ?? ??, ?? ??? ?????. , ??? ???, ?? ??? ? ? ?? ??? ? ?? ??? ?? ?????.

1. ??? ?? ??

<input type="number" name="demoNumber" min="1" max="100" step="1"/>

QQ截圖20161013173519.png

name: ??? ??? ? ? ? min? ?????. submit : ?? ???? ??? ??? ?? max : ?? ???? ??? ??? ?? step : ??/?? ?? ? ??/??? ?? ?? ??

2. ??? ?? ????

<input type="email" name="email" placeholder="??? ??? ??? ??????"/>

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

QQ截圖20161013173528.png

3. URL ?? ?? ??

<input type="url" placeholder= " URL" name="url"/>

QQ截圖20161013173534.png

? ?????. 4. ???? ????

<input type="tel" placeholder="?? ??" name="phone"/>

QQ截圖20161013173538.png

5. ?? ??

<input type="range" min="0" max="50" step="5" name="rangedemo" value="0"/> ;

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

QQ截圖20161013173547.png

<form oninput="output.value=parseInt(range.value)"/>

<input type="range" min ="0" max="100" step="5" name="range" value="0"/>

<output name="output">0<output/>

</form>

QQ截圖20161013173554.png

6. ??? ??, ??, ?, ? ?? ??

? ????? ???? ?? ??? ??? ? ????. ?? js ?? ???? HTML5? ?? ??? ?? ??? ???? ? ??? ? ??????.

QQ截圖20161013173611.png

<input type="date" name="datedemo"/>

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

7. ?? ?? ?? ??

QQ截圖20161013173622.png

<input type=" color " name="colordemo"/>

8. ?? ?? ?? ?? ??

?? ?????? ?? ?? ?? ?? ???? ??? ?????. HTML5? ???? ??????.

<input type="text" autocomplete="on" name="demoAutoComplete" list="autoNames" />

<datalist id="autoNames">

???????????????????????????????????? <option value="?? ????" ></option>

</datalist>

???? ??
||
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>drop</title> <body> <input type="text" autocomplete="on" name="demoAutoComplete" list="autoNames" /> <datalist id="autoNames"> <option value="輕松入門" ></option> <option value="php中文網(wǎng)" ></option> <option value="自學教程" ></option> </datalist> </body> </html>