Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  4. <script type="text/javascript">
  5. function fotka()
  6. {
  7. var hehe=document.getElementById("selekt").value;
  8. hehe=parseInt(hehe);
  9. switch(hehe)
  10. {
  11. case 1:
  12. document.getElementById("photo").src="1.png";
  13. break;
  14. case 2:
  15. document.getElementById("photo").src="2.png";
  16. break;
  17. case 3:
  18. document.getElementById("photo").src="3.jpg";
  19. break;
  20. }
  21. }
  22. </script>
  23. </head>
  24. <body>
  25. <center>
  26. <select id="selekt">
  27. <option value="1">1</option>
  28. <option value="2">2</option>
  29. <option value="3">3</option>
  30. </select>
  31. <input type="submit" value="Wybierz" onclick="fotka()">
  32. <br />
  33. <img id="photo">
  34. <center>
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement