HTML 属性:for
for
属性是 <label>
和 <output>
允许使用的属性。当用于 <label>
元素时,它表示该标签所描述的表单元素。当用于 <output>
元素时,它允许在代表输出中使用的值的元素之间建立明确的关系。
尝试一下
使用说明
当作为 <label>
的属性使用时,for
属性的值是与之相关的表单元素的id
。
html
<label for="username">你的名字</label> <input type="text" id="username" />
作为 <output>
的属性使用时,for
属性的值是一个空格分隔的列表,其中包含用于创建输出的元素的 id
值。
html
<input type="range" id="b" name="b" value="50" /> +
<input type="number" id="a" name="a" value="10" /> =
<output name="result" for="a b">60</output>
示例
规范
Specification |
---|
HTML # attr-label-for |
HTML # attr-output-for |
浏览器兼容性
html.elements.label.for
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
for |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
html.elements.output.for
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
for |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.