查看 Bootstrap 提供的在线代码示例,您会看到类似这样的表单
<div class = "control-group">
<label class = "control-label" for = "name">Full Name</label>
<div class = "controls">
<input type = "text" id = "name" maxlength = "40">
</div>
</div>
标签标记中的“for”字有什么作用?我注意到,如果我将输入 id 更改为与“for”值不对应的值,则输出没有明显差异。