Recuerda que en las ciencias informáticas cualquier problema puede tener más de una soluciones, no obstante aquí te mostramos lo más óptimo y eficiente.
Ejemplo: si existe una cookie, javascript
//You can call the function getCookie with the name of the cookie you want, then check to see if it is = null.functiongetCookie(name)var dc =document.cookie;var prefix = name +"=";var begin = dc.indexOf("; "+ prefix);if(begin ==-1)
begin = dc.indexOf(prefix);if(begin !=0)returnnull;else
begin +=2;var end =document.cookie.indexOf(";", begin);if(end ==-1)
end = dc.length;// because unescape has been deprecated, replaced with decodeURI//return unescape(dc.substring(begin + prefix.length, end));returndecodeURI(dc.substring(begin + prefix.length, end));functiondoSomething()var myCookie =getCookie("MyCookie");if(myCookie ==null)// do cookie doesn't exist stuff;else// do cookie exists stuff
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)