label
for属性
定义和用法
for 属性规定 label 与哪个表单元素绑定。
<span>
<label for="username">用户账号</label>
<input type="text" id="username" placeholder="用户账号" >
</span>
input
placeholder 属性
定义与用法
placeholder 属性提供可描述输入字段预期值的提示信息(hint)。
该提示会在输入字段为空时显示,并会在字段获得焦点时消失。
注释:placeholder 属性适用于以下的 <input>
类型:text, search, url, telephone, email 以及 password。
<span>
<label for="username">用户账号</label>
<input type="text" id="username" placeholder="用户账号" >
</span>