Radio button
## Syntax format: <input type = “radio” attribute = “value” />
Commonly used attributes
Note: Only one of a set of radio buttons can be selected, but the value of the name must be consistent. For example: name = “sex”
The radio button user cannot enter the content himself, the user can only select, so it must refer to the default value value.
Check box
<input type = "checkbox" attribute = "value" />
Common attributesYou can select multiple check boxes at the same time, or you can select none.
Let’s enrich our first example
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>用户注册</title> </head> <body> <font size="5" color="red">欢迎注册php.cn</font> <form name="user" method="get" action="" > 用户名:<input type="text" name="username"/> <br/> 密码:<input type="password" name="userpwd"/> <br/> 性别:<input type="radio" name="sex" value="男" checked=checked>男 <input type="radio" name="sex" value="女">女 <br/> 爱好:<input type="checkbox" name="hobby" value="运动">运动 <input type="checkbox" name="hobby" value="看电影">看电影 <input type="checkbox" name="hobby" value="编程" checked="checked">编程 <input type="checkbox" name="hobby" value="宅着">宅着 <br/><input type="submit" value="提交信息"/> </form> </body>
Is there too much content? Let’s continue adding to the next section