form中 单选框 input[type="radio"] 分组
Posted DreamSeeker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了form中 单选框 input[type="radio"] 分组相关的知识,希望对你有一定的参考价值。
在form中有时候需要给单选框分组,这种情况下 可以通过给单选框设置相同的name来进行分组;
- <html>
- <head>
- <title> </title>
- </head>
- <meta charset="utf-8">
- <body>
- <form action="" method="">
- <!--通过name将他们分组-->
- <input type="radio" name="sex"/>男
- <input type="radio" name="sex"/>女
- <input type="radio" name="subject"/>HTML
- <input type="radio" name="subject"/>CSS
- </form>
- </body>
- </html>
以上是关于form中 单选框 input[type="radio"] 分组的主要内容,如果未能解决你的问题,请参考以下文章