Correcting teacher:天蓬老师
Correction status:qualified
Teacher's comments:你这是什么作业, 有这个作业吗? 作业到群公告中看
<label></label>
绑定
<label for="">
</label>
for的参数与其他参数的id绑定
<input type="" name="" id>
表框的格式
select(name)+ option (value)
<select name="" id="">
<option value=""><option>
</select>
<input type="radio" name="gender" >男
<input type="radio" name="gender" >女
name值必须相同,单选效果才可实现
默认值在type中添加checked
<input type="checkbox" name="hobby[]" id="">
name属性必须+【】,设置为宿主格式