A voir également:
- Prob validation
- Excel validation des données liste - Guide
- Impossible d'utiliser ce numéro de téléphone pour la validation - Forum Gmail
- En attente de validation free flex - Forum Consommation & Internet
- Cette valeur ne correspond pas aux restrictions de validation des données pour cette cellule ✓ - Forum MacOS
- Temps validation annonce le bon coin - Forum Réseaux sociaux
4 réponses
avion-f16
Messages postés
19250
Date d'inscription
dimanche 17 février 2008
Statut
Contributeur
Dernière intervention
22 décembre 2024
4 505
24 juil. 2010 à 01:01
24 juil. 2010 à 01:01
Salut.
Je pense que le problème se situe avant.
N'aurais-tu pas oublié de fermer une balise ? Ou bien tu n'as peut-être pas fermé correctement une balise auto-fermante (avec "/>" au bout, comme <link />, <meta />, ...).
Ou tu as peut-être placer une balise dans le body alors qu'elle ne peut se situer que dans le head.
Je pense que le problème se situe avant.
N'aurais-tu pas oublié de fermer une balise ? Ou bien tu n'as peut-être pas fermé correctement une balise auto-fermante (avec "/>" au bout, comme <link />, <meta />, ...).
Ou tu as peut-être placer une balise dans le body alors qu'elle ne peut se situer que dans le head.
Ceci est mon code en entier: et franchement je ne vois pas trop ce ki cloche :s
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script src="Js/change_couleur.js" type="text/javascript"></script>
<title>Site </title>
<link rel="stylesheet" media="screen" href="Css/index.css" />
<link rel="stylesheet" media="screen" href="Css/960.css" />
</head>
<body id="change">
<div class="container_24">
<div class="grid_24" id="titre"></div>
<div class="grid_8 prefix_20" id="couleur">
<script type="text/javascript">
m="<table border='0'>";
m+="<tr>";
for (i=0; i<tab.length; i++) {
m+="<td style='background:url(\"Images/"+tab[i]+".png\");width:30px;height:30px;border:solid black 2px;' onclick='changecoul(\""+tab[i]+"\")'></td>";
}
m+="</tr>";
m+="</table>";
document.getElementById("couleur").innerHTML=m;
</script>
</div>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script src="Js/change_couleur.js" type="text/javascript"></script>
<title>Site </title>
<link rel="stylesheet" media="screen" href="Css/index.css" />
<link rel="stylesheet" media="screen" href="Css/960.css" />
</head>
<body id="change">
<div class="container_24">
<div class="grid_24" id="titre"></div>
<div class="grid_8 prefix_20" id="couleur">
<script type="text/javascript">
m="<table border='0'>";
m+="<tr>";
for (i=0; i<tab.length; i++) {
m+="<td style='background:url(\"Images/"+tab[i]+".png\");width:30px;height:30px;border:solid black 2px;' onclick='changecoul(\""+tab[i]+"\")'></td>";
}
m+="</tr>";
m+="</table>";
document.getElementById("couleur").innerHTML=m;
</script>
</div>
salut
Essayes de fermer le div de la ligne 12 et le body
Essayes de fermer le div de la ligne 12 et le body
HostOfSeraphim
Messages postés
6750
Date d'inscription
jeudi 2 février 2006
Statut
Contributeur
Dernière intervention
31 juillet 2016
1 608
24 juil. 2010 à 13:18
24 juil. 2010 à 13:18
D'où l'intérêt de montrer le code en entier... ;-) (d'autant que tu précisais quand même "en entier")
Oui oui je sais dsl mais cela ne resout pas mon probleme donc je recommence :D
Voici le code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Site </title>
<script src="Js/change_couleur.js" type="text/javascript"></script>
<link rel="stylesheet" media="screen" href="Css/index.css" />
<link rel="stylesheet" media="screen" href="Css/960.css" />
</head>
<body id="change">
<div class="container_24">
<div class="grid_24" id="titre"></div>
<div class="grid_8 prefix_20" id="couleur">
<script type="text/javascript">
m="<table>";
m+="<tr>";
for (i=0; i<tab.length; i++) {
m+="<td style='background:url(\"Images/"+tab[i]+".png\");width:30px;height:30px;border:solid black 2px;' onclick='changecoul(\""+tab[i]+"\")'></td>";
}
m+="</tr>";
m+="</table>";
document.getElementById("couleur").innerHTML=m;
</script>
</div>
<div class="grid_8" id="labo">
<img src="Images/labos.png" alt="labos" />
</div>
<div class="grid_8" id="presentation">
<p> Test </p>
</div>
<div class="grid_8" id="contact">
<img src="Images/contact.png" alt="contact" />
</div>
<div class="grid_8 suffix_16">
Ce site est en construction
</div>
</div>
</body>
</html>
Et revoici l'erreur di par w3c :
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).
Voici le code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Site </title>
<script src="Js/change_couleur.js" type="text/javascript"></script>
<link rel="stylesheet" media="screen" href="Css/index.css" />
<link rel="stylesheet" media="screen" href="Css/960.css" />
</head>
<body id="change">
<div class="container_24">
<div class="grid_24" id="titre"></div>
<div class="grid_8 prefix_20" id="couleur">
<script type="text/javascript">
m="<table>";
m+="<tr>";
for (i=0; i<tab.length; i++) {
m+="<td style='background:url(\"Images/"+tab[i]+".png\");width:30px;height:30px;border:solid black 2px;' onclick='changecoul(\""+tab[i]+"\")'></td>";
}
m+="</tr>";
m+="</table>";
document.getElementById("couleur").innerHTML=m;
</script>
</div>
<div class="grid_8" id="labo">
<img src="Images/labos.png" alt="labos" />
</div>
<div class="grid_8" id="presentation">
<p> Test </p>
</div>
<div class="grid_8" id="contact">
<img src="Images/contact.png" alt="contact" />
</div>
<div class="grid_8 suffix_16">
Ce site est en construction
</div>
</div>
</body>
</html>
Et revoici l'erreur di par w3c :
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).