元素标签不得作为a元素的后代出现

时间:2015-11-25 18:58:01

标签: html validation label href

Everthing似乎工作正常,但是当我验证我的xml时,我收到错误The element label must not appear as a descendant of the a element.类似的东西已经被问到here,但那确实蹲了我。如果我将labela中删除,那么只有标签旁边的icon才能作为链接使用,但我想要完整的内容。

我当前的代码

<a href="#">
   <span class="glyphicon glyphicon-wrench"></span>
   <label class="iconLabel">Settings</label>
</a>

我已经尝试将spanlabel置于div内,但没有改变

1 个答案:

答案 0 :(得分:1)

label更改span,但请将其保留在同一位置,保留课程&#34; iconLabel&#34;,这应该有用。

代码:

<a href="#">
   <span class="glyphicon glyphicon-wrench"></span>
   <span class="iconLabel">Settings</span>
</a>