验证HTML:标签元素的for属性必须引用一个表单控件

前端之家收集整理的这篇文章主要介绍了验证HTML:标签元素的for属性必须引用一个表单控件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不知道为什么我在 http://validator.w3.org/check检查我的页面时不断收到此错误错误是:
Line 235,Column 84: The for attribute of the label element must refer to a form control.
…  <label for="name" style="line-height:24px;">Your Name</label><br>&nbsp;&nbsp;

这是我的实际代码

<div>&nbsp;&nbsp;
                                    <label for="name" style="line-height:24px;">Your Name</label><br>&nbsp;&nbsp;
                                    <input class="css_form_namefield TooltipIstok " type="text" name="name" value="" style="width: 554px;" maxlength="50" >
                                </div>

解决方法

@H_502_11@ 如果在标签元素中使用for属性,则必须匹配表单中的输入元素的id.

<label for="field-id" style="line-height:24px;">Your Name</label><br>&nbsp;&nbsp;
<input type="text" id="field-id">

页面可能有助于更多信息. http://www.w3.org/TR/WCAG-TECHS/H44.html

原文链接:/html/227881.html

猜你在找的HTML相关文章