5568 sujets

Sémantique web et HTML

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:


	<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)
QuentinC a écrit :
Bonjour,
As-tu essayé en encadrant ton script par des commentaires ?


<script><!-- 
...
// --></script>


Complétons...

<script type="text/javascript">
//<!-- 
...
// --></script>

...sinon le début du commentaire HTML sera interprété comme une instruction...
Modifié par Gilles (24 Nov 2005 - 10:09)
Gilles a écrit :

...sinon le début du commentaire HTML sera interprété comme une instruction...

Non, en tout cas pas sur IE et sur ff...