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

HTML ??

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

?? ? ?? ???? ?? ??? ???, ?? ? ??? ??? ????? ????? ????? ???.

HTML ??? HTML ???? ???? ?? ?? ??? ?? ??? ?????. ??? ??? ??? ?? ??? ???? ? ??? ? ????.


??? ????? ??? ? ?? ??? ?? ????? ??? ???? ??? ?????. ASP, PHP, JSP ? ? ???? ??? ??? ???? ?? ? ????? ???? ?? ??? ???? ??? ??? ?? ??? ?????.


HTML ??(Form)? HTML? ??? ????, ?? ??? ?? ??, ?? ??? ?? ?????.

HTML ??? ?? ? ???? ? ? ?? ?? ??? ??? ????.

· ?? ???

· ??

· ??

?? HTML ??? ??? ???? ?? ???? ??? ??? ???? ??? ???? ??? ??? ? ?? ??? ?? ???? ?????. ?? ??, ?? ? ???? input type="text"? ? ? ?? ??? ???? ?? ??????.

??? ???? ??? ??? ?? ?????? ????? ???. ??? ??? ?? ??? ???? ??? ?????. ???? ? ??? ??? ??? ?????. ????? get? post?? ? ?? ?? ????. get ???? ? ???? ??/? ??? ????? URL(?? ????? ?? ??)? ?? ???? ????. Post? http? ?? ?? ???? ???? ?? ????? ?? ?? ??? ? ? ????. ???? ?? get? ???? ?? post? ?????? ????? ??? ???? ?? ???? ???? get? ????, ???? ???? ?????? ???? post? ???? ?? ????.

HTML ??(Form)? ?? ???(Controls)

HTML ??(Form)? ?? ???? ??? ????.


?? ??? ??????????????????????????????????????????????????????????????????????? ??="??"

?? ??? ??? ??? ??? ???? ??

?? ??="????"

????

<<> ?? ?? = "Radio">

?? ?? ?? TextArea ???? *)

?? ???: ? ? ??? ?? ??(input type="text")

? ? ??? ?? ??? ???? ???? ??? ? ? ??? ??? ? ????. , ??? ?? ?. ??? ??? ????.

<input type="text" name="yourname">

?? ?? ): ????(?? ??="????")????? ???? ???? ?? ???? ?? ??? ??? ? ????. ?? ??:

<input type="checkbox" name="fruit" value ="apple">Apple<br>

<input type="checkbox" name="fruit" value ="orange">orange<br><input type="checkbox" name="fruit" value ="mango">mango<br>

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

<input type="checkbox" name="fruit" value ="orange" selected>???<br>

?? ???: ??? ??(?? ??="radio")


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

<input type="radio" name="fruit" value = "Apple">Apple<br>

<input type="radio" name="fruit" value = "???">???<br>

<input type="radio" name="fruit" value = "??">??<br>

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

<input type="radio" name="fruit" value = "Orange" ???>???<br>

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


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

<select name="??" >
<?? ?="??">??
<?? ?="???">??
<?? ?=" mango">Mango
</select>

?? ????? ??? ??? ??? ???? ???. ???? Ctrl? ???? ?? ??? ?????. ?:

<select name="fruit" multiple>

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


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

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

<textarea name="yoursuggest" cols ="50"rows = "3"></textarea>

??? cols? ??? ?????. ??? ??? ??, ?? ??? ??? ??? ?????.


?? ???: ???? ?? ??(input type="password")

???? ?? ??(input type="password") ")? ?? ????? ?? ?? ?? ??? ???? ? ?????. ???? ??? ? ???? ?? ?? ??? ?? ??? ? ???? ?????. . ??? ??? ????.

<input type="password" name="yourpw">


?? ?? ): ??(input type="submit")

??(input type=submit)?? ??(Form)? ??? ?? ??? ???? ??? ??? ? ????. ??. ??? ??? ????.

<input type="submit" value="submit">


?? ???? ???? ??? ??? ??? ??? action ??? ?? ?????.

?? ?? <input type="submit"> ??? ???? ?? ???? ?????.

?? <input type="button"> onClick ???? js ??? ?? ?? ??? ?? ?? ?? ????? ?? ???? ?????.


???? ??
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php.cn</title> </head> <body> <form action=""> 戶名: <input type="text" name="user"><br><br> 密碼: <input type="password" name="password"> <hr> <input type="radio" name="sex" value="male">Male <input type="radio" name="sex" value="female">Female <hr> <input type="checkbox" name="vehicle" value="Bike">bike <input type="checkbox" name="vehicle" value="Car">car <input type="checkbox" name="vehicle" value="moto">moto <hr> <select name="cars"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="fiat" selected>Fiat</option> <option value="audi">Audi</option> </select> <hr> <textarea rows="10" cols="30"> 文本框。 </textarea> <br> <input type="submit" value="提交"> </form> </body> </html>