0

我遇到了 XML 验证问题。这一点:

<script type="text/javascript">
oxm_ad = {"website":"cca9e4b4-7ed2-848z-ffea-067efabc891a",
"size":"468x60",
"floor":"0.01",
"beacon":"<div id='beacon_017a6c9ega' style='position: absolute; left: 0px; top: 0px; visibility: hidden;'><img src='http://www.website.com/openx/www/delivery/lg.php?bannerid=1&amp;campaignid=1&amp;zoneid=4&amp;loc=http%3a%2f%2flocalhost%2fproject-debug%2fproject.html&amp;cb=014a7c8eda&amp;bannerid=-1' width='0' height='0' alt='' style='width: 0px; height: 0px;' </img></div>",
"fallback":"<a href='http://www.website.com/openx/www/delivery/ck.php?oaparams=2__bannerid=1__zoneid=4__cb=014a7c8eda__oadest=http%3a%2f%2fwww.website.com' target='_blank'><img src='http://www.website.com/openx/www/delivery/ai.php?filename=mybanner.png&amp;contenttype=png' width='468' height='60' alt='' title='' border='0' /></a><div id='beacon_014a7c8eda' style='position: absolute; left: 0px; top: 0px; visibility: hidden;'><img src='http://www.website.com/openx/www/delivery/lg.php?bannerid=1&amp;campaignid=1&amp;zoneid=4&amp;loc=http%3a%2f%2flocalhost%2fproject-debug%2fproject.html&amp;cb=014a7c8eda' width='0' height='0' alt='' style='width: 0px; height: 0px;' </img></div>"};
</script>

结果是:

此页面包含以下错误:第 5 行第 246 列错误:解析属性名称时出错

我不确定我的错误是什么。有关如何纠正此问题的任何建议?

谢谢!

-拉克西米迪

4

2 回答 2

1

看起来您的>两个<img>标签都缺少结尾。即它应该是:

<img src='... height: 0px;'> </img>

而不是您目前拥有的:

<img src='... height: 0px;' </img>

下一行有同样的错误。看看能不能解决问题?

于 2010-08-07T18:35:42.923 回答
0

<img>标签现在没有配对的</img>结束标签,而是使用<img src="...." />

于 2012-10-22T10:34:11.650 回答