图片如果看不清,下边是完整代码.
<!DOCTYPE html>
<html>
<head>
<title>label标签</title>
</head>
<body>
<form>
你对什么运动感兴趣:<br/>
<label for="0">慢跑<input type="checkbox" id="0"/></label><br/>
<label for="1">登山<input type="checkbox" id="1"/></label><br/>
<label for="2">篮球<input type="checkbox" id="2"/></label>
<hr/><!--这两种都可以使用吗?-->
<br/>
<label for="a">慢跑</label><input type="checkbox" id="a"/><br/>
<label for="b">登山</label><input type="checkbox" id="b"/><br/>
<label for="c">篮球</label><input type="checkbox" id="c"/>
</form>
</body>
</html>
label标签是不可以嵌套的
就算你把input放到label里面,你还是得为label的for属性指定id
建议使用第二种方式:<label></label><input></input>