为什么我的点击慢跑的时候光标不会选择后面的方框呢
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>form中的lable标签</title>
</head>
<body>
<form>
<label for="male">男</label>
<input type="radio" name="gender" id="male" />
<br />
<label for="female">女</label>
<input type="radio" name="gender" id="female" />
<br />
<label for="email">输入你的邮箱地址</label>
<input type="email" id="email" placeholder="Enter email"><br/>
你对什么运动感兴趣<br/>
<laber for="motion1">慢跑</laber>
<input type="checkbox" name="motion" value="motion1" id="motion1"/><br/>
<laber for="motion2">登山</laber>
<input type="checkbox" name="motion" id="motion2"/><br/>
<laber for="motion3">篮球</laber>
<input type="checkbox" name="motion" id="motion3"/><br/>
</form>
</body>
</html>