<lable>标签

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

KeviN_LE

2016-03-29 23:21

如题  该标签具体作用 最好有示例

写回答 关注

5回答

  • qq_丹丘水_0
    2016-03-29 23:36:43
    已采纳

    同上!!!

  • qq__漫时光_0
    2016-03-29 23:38:40

     <form name="iForm">

       <lable>电脑类型</lable>

       <select>

         <option value="联想" selected="selected">联想</option>

         <option value="华硕">华硕</option>

         <option value="华为">华为</option>

         <option value="苹果">苹果</option>

       </select>

     </form>

    <form>

      <label for="male">男</label>

      <input type="radio" name="gender" id="male" />

      <br />

      <label for="female">女</label>

      <input type="radio" name="gender" id="female" />

      <label for="email">输入你的邮箱地址</label>

      <input type="email" id="email" placeholder="Enter email">

    </form>

    <form action="">

      <label>您对什么运动感兴趣:</label></br>

      <input type="checkbox" value="跑步">跑步

      <input type="checkbox" value="登山">登山

      <input type="checkbox" value="篮球">篮球

    </form>


  • 慕码人2558543
    2016-03-29 23:37:55

    目前我只知道一个:label标签里的for属性值与input标签里的id值相同时,当鼠标光标点击label标签的文本时可以默认选择相应的input标签

  • 渠林网络
    2016-03-29 23:37:47

    可以使标签内的区域指向label标签for属性指代的对象的事件。

    无label标签:<input id="ye" type="checkbox" />   文本

    有label标签:<label for="ye"><input id="ye" type="checkbox" />
      文本</label>

    有label标签的这一段,点击标签中的文本,可使多选框聚焦。

  • chili123
    2016-03-29 23:34:18

    可以使标签内的区域指向label标签for属性指代的对象的事件。

    无label标签:<input id="ye" type="checkbox" />   文本

    有label标签:<label for="ye"><input id="ye" type="checkbox" />
      文本</label>

    有label标签的这一段,点击标签中的文本,可使多选框聚焦。

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

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

1225293 学习 · 18230 问题

查看课程

相似问题