Lean's Blog

🌑

HTML-label标签

label标签

当选择该标签时,浏览器会自动聚焦到标签相关的表单控件上。

// id绑定
<label for="name">name</label>
<input type="text" id="name">

// 嵌套绑定
<label>date<input type="text"></label>

— 2021年7月4日

GitHub LEAN'S BLOG © 2020