Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- </head>
- <body>
- <button type="button" onclick="dodajCookie()">
- Dodajc Cookie
- </button>
- <button type="button" onclick="pokazCookie()">
- Pokaz cookie
- </button>
- <button type="button" onclick="zwiekszLicznik()">
- zwieksz licznik
- </button>
- <script>
- function dodajCookie(){
- document.cookie="licznik=0;expires=Wed, 18 Dec 2030 12:00:00 GMT";
- }
- function odczytajCookie(name){
- var v = document.cookie.match(
- '(^|;)' + name + '=([^;]*)(;|$)');
- return v ? v[2] : null;
- }
- function pokazCookie(){
- alert(odczytajCookie("licznik"));
- }
- function zwiekszLicznik(){
- var licznik = odczytajCookie("licznik");
- licznik = parseInt(licznik, 10);
- licznik = licznik + 1;
- document.cookie="licznik="+ licznik +
- ";expires=Wed, 18 Dec 2030 12:00:00 GMT";
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement