Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <script>
  5. function zm1() {
  6. document.getElementById('div1').innerHTML = "Wywołałeś funkcję zdefiniowaną wewnątrz HTML";
  7. }
  8.  
  9. </script>
  10. <script>
  11. function zm2() {
  12. document.getElementById('div2').innerHTML = "Zmiana na podstawie skryptu z zewnątrznego pliku";
  13. document.getElementById("div2").style.color = "red";
  14. }
  15.  
  16. </script>
  17. </head>
  18.  
  19. <body>
  20. <button onclick="zm1()">
  21. Nacisnij aby zmienić napis
  22. </button><br>
  23.  
  24. <div id="div1">Jakiś napis początkowy</div>
  25. <br>
  26. <button onclick="zm2()">
  27. Nacisnij aby zmienić napis
  28. </button>
  29. <br>
  30. <div id="div2">Jakis napis początkowy</div>
  31. </body>
  32.  
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement