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

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

在使用表單設(shè)計調(diào)查表時,為了減少用戶的操作,使用選擇框是一個好主意,html中有兩種選擇框,即單選框復(fù)選框,兩者的區(qū)別是單選框中的選項用戶只能選擇一項,而復(fù)選框中用戶可以任意選擇多項,甚至全選。請看下面的例子:

語法:

<input   type="radio/checkbox"   value="值"    name="名稱"   checked="checked"/>

1, type:

type="radio" ? ? ???? ??? ??

type="checkbox"? ? ???? checkbox

2 , ?: ??? ???? ???? ?(????? ???? PHP?? ??)

3, ??: ????? ???? ASP ? PHP?? ??? ??? ??

4, ??: ??? ? checked="checked"?? ??? ????? ?????

?? ??? ??? ??:

????? ???? ??:

Note: ??????? ??? ??? ?? , ?? ?? ?? ????? ??? ?? ?? ?? ???? "radioLove"?? ??? ????? ??? ??? ??? ??? ??? ?? ??? ??? ? ????.

???? ??
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>單選框、復(fù)選框</title> </head> <body> <form action="save.php" method="post" > <label>性別:</label> <label>男</label> <input type="radio" value="1" name="sex" /> <label>女</label> <input type="radio" value="2" name="sex" /> </form> </body> </html>