美文网首页
<Label>标签

<Label>标签

作者: 浩神 | 来源:发表于2017-12-10 16:01 被阅读8次

The HTML <label> element represents a caption for an item in a user interface.
From: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label

<Label> is used as a caption for an item. For example, if there is a form and we want to tell our user, this input is for username, this input is for password. Maybe we need to add caption Username and Password in front of form elements, and like this:

image.png

Then we need to use <label> element to implement this. Here is my code:

   <form action="">
        <label>
            Username:
            <input type="text" name="username" placeholder="please input you name">
        </label>        
        <label>
            Password:
            <input type="text" name="password" placeholder="please input you password">
        </label>
    </form>

if we don't want to place <input> inside <label>, we can use for attribute to associate them, just like this:

    <form action="">
        <label for="username">Username:</label>
        <input type="text" name="username" id="username" placeholder="please input you name">
        <label for="password">Password:</label>
        <input type="text" name="password" id="password" placeholder="please input you password">
    </form>

attention: the value of for attribute is the related form element's id.

相关文章

  • <Label>标签

    The HTML element represents a caption for an item in a ...

  • <label>使用探究

    标签为 input 元素定义标注(标记)。label 元素不会向用户呈现任何特殊效果。不过,它为鼠标用户改进了可用...

  • HTML 4.01版

    复习 排版标签:p hr br pre 字体标签: 转义字符:<> 清单标签:有序列表...

  • 2019-03-20第二天

    常用的标签有 标题标签H系列 段落标签p系列 换行标签br 横线标签hr 常用的实体有<<>> © 空...

  • 2019-05-27第二天

    常用的标签有 标题标签H系列 段落标签p系列 换行标签br 横线标签hr 常用的实体有<<>> © 空...

  • [CSS]利用<label>实现<input&

    我们在设置form表单中设置单选列表时,一般做法是将input元素的type为radio,浏览器会默认给出单选按钮...

  • 第二篇

    2.在HTML里打多个空格需要使用标签,一般标签有<;=<,> => =空格回车标签有...

  • jQuery html函数

    jQuery 的html()函数自动把不安全的标签 标签和&符号escape了 script标签被转换成 & lt...

  • Mybatis if标签判断数字大小

    if标签语法 条件表达式中大于号小于号用 gt,lt mapper xml

  • arguements应用

    HTML 标签, 在页面上显示代码< 做尖括号 , > 右尖括号 JS arguements是传递给函...

网友评论

      本文标题:<Label>标签

      本文链接:https://www.haomeiwen.com/subject/fflvixtx.html