Forum de discussion
Forum « Programmation Javascript » (archives)
Re: cookies
Envoyé: 6 mars 2002, 3h10 par lanfeust
<script>
<!--
if(document.cookie!='')
{
document.write("<a href='#' onclick=\"delCookie('NameOfCookie');\">Se déconnecter</a>");
}
else
{
document.write("<a href='enregistrer.html'>Se connecter</a>");
}
//-->
</script>
et dans un .js, je mets mes fonctions
function getCookie(NameOfCookie)
{ if (document.cookie.length > 0)
{
begin = document.cookie.indexOf(NameOfCookie+"=");
if (begin != -1)
{
begin += NameOfCookie.length+1;
end = document.cookie.indexOf(";", begin);
if (end == -1) end = document.cookie.length;
return unescape(document.cookie.substring(begin, end));
}
}
return null;
}
function delCookie (NameOfCookie)
{ if (getCookie(NameOfCookie))
{
document.cookie = NameOfCookie + "=" +"; expires=Thu, 01-Jan-70 00:00:01 GMT";
}
}
Merci beaucoup pour ta gentillesse et ta disponibilité ;o)
Réponses
|