我有一个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&campaignid=1&zoneid=4&loc=http%3a%2f%2flocalhost%2fproject-debug%2fproject.html&cb=014a7c8eda&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&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&campaignid=1&zoneid=4&loc=http%3a%2f%2flocalhost%2fproject-debug%2fproject.html&cb=014a7c8eda' width='0' height='0' alt='' style='width: 0px; height: 0px;' </img></div>"};
</script>
结果:
此页面包含以下内容 错误:第246行第5行的错误: 解析属性名称时出错
我不确定我的错误是什么。关于如何纠正这个问题的任何建议?
谢谢!
-Laxmidi
答案 0 :(得分:1)
您似乎错过了>
个<img>
标记的结尾<img src='... height: 0px;'> </img>
。即它应该是:
<img src='... height: 0px;' </img>
而不是你现在拥有的东西:
{{1}}
下一行有相同的错误。看看是否能解决问题?
答案 1 :(得分:0)
<img>
标记现在没有配对的</img>
结束标记,而是使用<img src="...." />