bonsoir à tous
j'ai de nouveau un souci... avec du javascript qui ne veut pas passer la validation XHTML 1.0 Transitional du w3c
mon code:
le message d'erreur:
ce javascript est lancé dans le head (mais j'ai fait les tests aussi en le plaçant dans le body, avec même message d'erreur...)
comment "fixer" ce problème?
si quelqu'un voit la syntaxe que je peux utiliser...
merci à tous...[/i]
Modifié par mussara (24 Nov 2005 - 10:11)
j'ai de nouveau un souci... avec du javascript qui ne veut pas passer la validation XHTML 1.0 Transitional du w3c
mon code:
<script type="text/javascript">
var nbImg; var diaposens=1;
var NomNav = navigator.appName; // le nom du navigateur
var diapoSpeed=3000; //3 secondes
var chemin="<?php echo $CHEMIN ?>";
// creation de la gallerie
var gallerie= new CreerGallerie(nbImg);
gallerie.image('<?php echo VIDEO ?>', <?php echo $XMAX ?>, <?php echo $YMAX ?>, 60, 60, '<?php echo $TITRE ?>','<?php echo $LIEU ?>','','<?php echo $QUI ?>','<?php echo $DATEPHOTO ?>','<?php echo $PHOTOGRAPHE ?>');
var strVignette='';
var z=0;
for(i=0; i<1; i++){
if(z==0){ strVignette+= '<tr><td align="center">';
}
strVignette+=gallerie[i].vignette;
if(z==(gallerie.limit-1)||i==(gallerie.nb-1)){ strVignette+= '</td></tr>';
z=0;
}
else{ z++;
}
}
</script>
le message d'erreur:
a écrit :
Line 28, column 32: document type does not allow element "tr" here .
if(z==0){ strVignette+= '<tr><td align="center">';
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
ce javascript est lancé dans le head (mais j'ai fait les tests aussi en le plaçant dans le body, avec même message d'erreur...)
comment "fixer" ce problème?
si quelqu'un voit la syntaxe que je peux utiliser...
merci à tous...[/i]
Modifié par mussara (24 Nov 2005 - 10:11)