html label标签的for属性用法代码
<input type=“checkbox“ id=“box1“ name=“News“ value=“0“ >
<label for=“box1“ >语文</label>
<br>
<input type=“checkbox“ id=“box2“ name=“News“ value=“1“ >
<label for=“box2“ >科学</label>
<br>
<input type=“checkbox“ id=“box3“ name=“News“ value=“2“ >
<label for=“box3“ >英语</label>
<br>
<input type=“checkbox“ id=“box4“ name=“News“ value=“3“ >
<label for=“box4“ >地理</label>
<br>
<input type=“checkbox“ id=“box5“ name=“News“ value=“4“ >
<label for=“box5“ >数学</label>