Advertisement
Szczepan86

HTML - przykłady

Mar 10th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. var numer = 1;
  6. function myFunction() {
  7.     if (numer == 1) {
  8.         document.getElementById("demo" + numer).innerHTML = "Nowy akapit";
  9.         document.getElementById("przycisk").firstChild.data = "INNY TEKST";
  10.     }
  11.     if (numer == 2) {
  12.         document.getElementById("demo" + numer).innerHTML = "Jeszcze nowszy akapit";
  13.     }
  14.     if (numer == 3) {
  15.         document.getElementById("demo" + numer).innerHTML = "Jeszcze jeszcze nowszy akapit!";
  16.     }
  17.     numer = numer + 1;
  18. }
  19. </script>
  20. </head>
  21.  
  22. <body>
  23.  
  24. <h2>Naglowek strony</h2>
  25.  
  26. <p id="demo1"></p>
  27. <p id="demo2"></p>
  28. <p id="demo3"></p>
  29.  
  30. <button onclick="window.location.href='http://www.google.pl'">Google</button>
  31. <button type="button" id="przycisk" onclick="myFunction()">Kliknij mnie</button>
  32.  
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement