如何使此广告服务器代码段符合W3C标准?

时间:2011-06-21 13:44:54

标签: html w3c-validation ampersand

我与广告服务器签订合同,在我的网站上投放广告,而他们给我的html片段没有验证,我正在努力使其验证。

我的标题是过渡性的。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

我给出的html代码如下。

<script  language="javascript"  type="text/javascript">iwsrcplus="http://codenew.impresionesweb.com/r/banner_iw.php?idrotador=82140&tamano=160x600&lgid="+((new Date()).getTime() % 2147483648) + Math.random(); document.write("<scr"+"ipt language=javascript  type=text/javascript src="+iwsrcplus+"></scr"+"ipt>");</script><noscript><iframe src="http://alt.impresionesweb.com/noscript.php?tam=160x600&idp=82140&ref=82140&cod=160915" width="160" height="600" frameborder="0" marginheight="0" marginwidth="0" scrolling="no"></iframe></noscript>

仅将&更改为&amps;

才会验证

1 个答案:

答案 0 :(得分:0)

您必须将&符号更改为...

&amp;

然后发布你得到的任何其他错误。

修改

我验证了您的所有代码,如下所示......

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

    <head>
       <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
       <title></title>
    </head>

    <body>

    <script  language="javascript"  type="text/javascript">
    //<![CDATA[
        iwsrcplus="http://codenew.impresionesweb.com/r/banner_iw.php?idrotador=82140&amp;tamano=160x600&amp;lgid="+((new Date()).getTime() % 2147483648) + Math.random(); document.write("<scr"+"ipt language=javascript  type=text/javascript src="+iwsrcplus+"></scr"+"ipt>");
    //]]>
    </script>
    <noscript><iframe src="http://alt.impresionesweb.com/noscript.php?tam=160x600&amp;idp=82140&amp;ref=82140&amp;cod=160915" width="160" height="600" frameborder="0" marginheight="0" marginwidth="0" scrolling="no"></iframe></noscript>

    </body>

</html>