Everthing似乎工作正常,但是当我验证我的xml时,我收到错误The element label must not appear as a descendant of the a element.
类似的东西已经被问到here,但那确实蹲了我。如果我将label
从a
中删除,那么只有标签旁边的icon
才能作为链接使用,但我想要完整的内容。
我当前的代码
<a href="#">
<span class="glyphicon glyphicon-wrench"></span>
<label class="iconLabel">Settings</label>
</a>
我已经尝试将span
和label
置于div
内,但没有改变
答案 0 :(得分:1)
为label
更改span
,但请将其保留在同一位置,保留课程&#34; iconLabel&#34;,这应该有用。
代码:
<a href="#">
<span class="glyphicon glyphicon-wrench"></span>
<span class="iconLabel">Settings</span>
</a>