1. 程式人生 > >學習15 單選框/多選框標簽

學習15 單選框/多選框標簽

con form type code pan content 多選 span div

<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>單選框/復選框</title>
</head>
<body>
<form action="save.php" method="post" >
    <label>性別:</label>
    <label></label>
    <
input type="radio" value="1" name="gender-man" /> <label></label> <input type="radio" value="2" name="gender-woman" /> </form> </body> </html>

學習15 單選框/多選框標簽