gpt4 book ai didi

html - 字段集和图例

转载 作者:太空狗 更新时间:2023-10-29 15:31:30 25 4
gpt4 key购买 nike

好的,我知道 fieldset/legend 在 HTML 中是如何工作的。假设您有一个包含某些字段的表单:

<form>
<fieldset>
<legend>legend</legend>
<input name="input1" />
</fieldset>
</form>

我应该使用图例做什么?它显示为标题,但图例在语义上不就是对内容的解释吗?在我看来,您最好这样做:

<form>
<fieldset>
<legend>* = required</legend>
<label for="input1">input 1 *</label><input id="input1" name="input1" />
</fieldset>
</form>

但这并不能真正解决字段集的呈现方式。这只是 HTML 中的歧义命名,还是我对英文单词“legend”的误解?


编辑:修复了一些错误;-)

最佳答案

是的,命名不明确。最好将其视为字段集的标题。

参见 the HTML spec on FIELDSET and LEGEND elements如果您还没有:

The LEGEND element allows authors to assign a caption to a FIELDSET. The legend improves accessibility when the FIELDSET is rendered non-visually.

关于html - 字段集和图例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/253410/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com