学习15 单选框/多选框标签
Posted Riona-C
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习15 单选框/多选框标签相关的知识,希望对你有一定的参考价值。
<!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 单选框/多选框标签的主要内容,如果未能解决你的问题,请参考以下文章