第一节CSS样式
label标签的使用
<label></label>
绑定
<label for="">
</label>
for的参数与其他参数的id绑定
input表框
<input type="" name="" id>
表框的格式
select下拉列表
select(name)+ option (value)
<select name="" id="">
<option value=""><option>
</select>
redio单选按钮
<input type="radio" name="gender" >男
<input type="radio" name="gender" >女
name值必须相同,单选效果才可实现
默认值在type中添加checked
多选框
<input type="checkbox" name="hobby[]" id="">
name属性必须+【】,设置为宿主格式