5568 sujets

Sémantique web et HTML

bonjour

j'utilise cette syntaxe pour une variable de lien:
$CLIC_ACCES = "<a href='acces.php?cat=plangeneral'
onmouseout=\"MM_swapImgRestore()\"
onmouseover=\"MM_swapImage('image1002','','../images/acces_sel.gif',1)\"/>
<img name='image1002' border='0' src='../images/acces.gif' width='99' height='21'
 title='acc&egrave;s' alt='acc&egrave;s'/></a>";


lorsque j'essaie de valider w3c en XHTML 1.0 Transitional , j'ai le message
a écrit :
The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.


donc il ne comprend pas l'ouverture fermerture du tag "a" alors que a priori c'est bien écrit et interprété par les navigateurs...

comment puis je faire pour fixer ce problème?

merci à tous
Modifié par mussara (07 Dec 2005 - 11:19)
Il y a un slash en trop à la fin de ta première balise. Là ça devrait aller mieux :
$CLIC_ACCES = "<a href='acces.php?cat=plangeneral'
onmouseout=\"MM_swapImgRestore()\"
onmouseover=\"MM_swapImage('image1002','','../images/acces_sel.gif',1)\">
<img name='image1002' border='0' src='../images/acces.gif' width='99' height='21'
 title='acc&egrave;s' alt='acc&egrave;s'/></a>";