HTML实体验证错误

时间:2012-05-28 16:20:14

标签: html

有人能告诉我为什么我一直收到以下代码的错误:

<div class="sidebox-header-left">
<h3 class="rightBoxHeading" id="ezpagesHeading">Advertisement</h3>
    <br/>
<a href="http://www.test.com/tread.php?s=000&v=0&q=000&r=000&clickref=test.com"><img src="http://www.test.com/tshow.php?s=000&v=000&q=000&r=000" border="0"></a>            </div>
    <div id="ezpagesContent" class="sideBoxContent">
</div>
    </div>

我正在使用HTML 4.01 Transitional,但是我不断为上面的代码收到以下错误:

  

警告第298行,第56列:在属性值中引用外部实体   ... p://www.test.com/tread.php?s=000&v=000&q=000&r=000&clickref=test.com

     

这通常是没有正确转义以包含在属性中的&符号的符号,例如在href中。您需要将“&”的所有实例转换为“&amp;”。

2 个答案:

答案 0 :(得分:0)

从验证器(您在问题中包含)中查看此信息?

  

您需要将“&”的所有实例转换为“&amp;”。

那样做。

<a href="http://www.test.com/tread.php?s=000&amp;v=0&amp;q=000&amp;r=000&amp;clickref=test.com">

答案 1 :(得分:0)

如果你关心验证,

&应该是&amp;