标签:post body put val label value 学习 form name
<!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>
标签:post body put val label value 学习 form name
原文地址:http://www.cnblogs.com/Riona-C/p/7091865.html