为什么我的点击慢跑的时候光标不会选择后面的方框呢

来源:6-8 使用label为input标签穿上衣服

熊的狠

2015-11-01 17:10

<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>

写回答 关注

2回答

  • 慕課君
    2015-12-07 16:12:06
    已采纳

    写错了label。^_^



  • 熊的狠
    2015-11-01 17:21:17

    原来写错了label

初识HTML(5)+CSS(3)-升级版

HTML(5)+CSS(3)基础教程8小时带领大家步步深入学习标签用法和意义

1225297 学习 · 18230 问题

查看课程

相似问题