复选框同一组的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 check="check">性别:</label>
<label>男</label>
<input type="radio" value="man" name="gender" />
<label>女</label>
<input type="radio" value="woman" name="gender" />
<br>
<label>爱好:</label>
<label>游泳</label>
<input type="checkbox" name="1" vaule="游泳"/>
<label>跳舞</label>
<input type="checkbox" name="1" vaule="dancing"/>
</form>
</body>
</html>