Repciu

Untitled

Oct 5th, 2024 (edited)
71
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 1 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Ciasteczka test</title>
  7.  
  8. <script type="text/javascript">
  9. function dodajCookie() {
  10. document.cookie = "licznik=0;expires=Wed, 18 Dec 2030 11:00:00 GMT"
  11. }
  12. function pokazCookie() {
  13. document.getElementById("cookie").innerHTML = document.cookie
  14. }
  15. function odczytajCookie(name) {
  16. var v = document.cookie.match('(^|;)?' + name + '=([^;]*)(;|$)');
  17. return v ? v[2] : null;
  18. }
  19. function zwiekszLicznik() {
  20. var y = odczytajCookie("licznik");
  21. y = parseInt(y, 10) + 1;
  22. document.cookie = "licznik=" + y + ";expires=Wed, 18 Dec 2030 11:00:00 GMT";
  23. }
  24.  
  25. </script>
  26. </head>
  27.  
  28. <body onload="zwiekszLicznik()">
  29. <h1 id="licznik"></h1>
  30. <button type="button" onclick="dodajCookie()">Upiecz Ciasteczko</button>
  31. <button type="button" onclick="pokazCookie()">Pokaż Ciasteczko</button>
  32. <p id="cookie"></p>
  33. </body>
  34.  
  35. </html>
  36.  
Advertisement
Add Comment
Please, Sign In to add comment