Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Ciasteczka test</title>
- <script type="text/javascript">
- function dodajCookie() {
- document.cookie = "licznik=0;expires=Wed, 18 Dec 2030 11:00:00 GMT"
- }
- function pokazCookie() {
- document.getElementById("cookie").innerHTML = document.cookie
- }
- function odczytajCookie(name) {
- var v = document.cookie.match('(^|;)?' + name + '=([^;]*)(;|$)');
- return v ? v[2] : null;
- }
- function zwiekszLicznik() {
- var y = odczytajCookie("licznik");
- y = parseInt(y, 10) + 1;
- document.cookie = "licznik=" + y + ";expires=Wed, 18 Dec 2030 11:00:00 GMT";
- }
- </script>
- </head>
- <body onload="zwiekszLicznik()">
- <h1 id="licznik"></h1>
- <button type="button" onclick="dodajCookie()">Upiecz Ciasteczko</button>
- <button type="button" onclick="pokazCookie()">Pokaż Ciasteczko</button>
- <p id="cookie"></p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment