web-interview icon indicating copy to clipboard operation
web-interview copied to clipboard

[html] 2.Label 的作用是什么?是怎么用的?

Open qiilee opened this issue 6 years ago • 1 comments

答案:label 标签来定义表单控制间的关系,当用户选择该标签时,浏览器会自动将焦点转到和标签相关的表单控件上

解析:两种用法:一种是 id 绑定,一种是嵌套

<label for="Name">Number:</label>

<input type=“text“name="Name" id="Name"/>

<label>Date:<input type="text" name="B"/></label>

qiilee avatar Sep 27 '19 02:09 qiilee

<input type=“text“name="Name" id="Name"/>

iwxf avatar Apr 23 '20 05:04 iwxf