Bonjour
J'ai voulu faire valider ma page html, mais le validateur du W3C n'aime pas le javascript qu'il y a dans ma page...
Exemple :
Ca donne comme erreur :
1# Warning Line 126 column 53: cannot generate system identifier for general entity "idBillet".
document.location.href = "adnews.php?action=suppr&idBillet=" + idBillet;
2#Error Line 126 column 53: general entity "idBillet" not defined and no default entity.
document.location.href = "adnews.php?action=suppr&idBillet=" + idBillet;
3#Warning Line 126 column 61: reference not terminated by REFC delimiter.
...cument.location.href = "adnews.php?action=suppr&idBillet=" + idBillet;
4#Error Line 126 column 61: reference to entity "idBillet" for which no system identifier could be generated.
...cument.location.href = "adnews.php?action=suppr&idBillet=" + idBillet;
etc....
Vous avez une idée du probleme ?
Modifié par xitag (11 Nov 2006 - 05:00)
J'ai voulu faire valider ma page html, mais le validateur du W3C n'aime pas le javascript qu'il y a dans ma page...
Exemple :
function valide( idBillet )
{
var confirmation1 = confirm( "Voulez vous vraiment supprimer ce post ?") ;
if( confirmation1 )
{
document.location.href = "adnews.php?action=suppr&idBillet=" + idBillet;
}
}
Ca donne comme erreur :
1# Warning Line 126 column 53: cannot generate system identifier for general entity "idBillet".
document.location.href = "adnews.php?action=suppr&idBillet=" + idBillet;
2#Error Line 126 column 53: general entity "idBillet" not defined and no default entity.
document.location.href = "adnews.php?action=suppr&idBillet=" + idBillet;
3#Warning Line 126 column 61: reference not terminated by REFC delimiter.
...cument.location.href = "adnews.php?action=suppr&idBillet=" + idBillet;
4#Error Line 126 column 61: reference to entity "idBillet" for which no system identifier could be generated.
...cument.location.href = "adnews.php?action=suppr&idBillet=" + idBillet;
etc....
Vous avez une idée du probleme ?
Modifié par xitag (11 Nov 2006 - 05:00)