Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <form name="obrazki" onchange="info()">
  2. <p id="obr">
  3. <img src="RYSUNKI/CD.JPG" ></p><br>
  4. <select name="wybor">
  5. <option selected>Płyta CD</option>
  6. <option>
  7. Waltornia
  8. </option>
  9. <option>
  10. Nuty
  11. </option>
  12. </select>
  13. </form>
  14. <script type="text/javascript">
  15. function info()
  16. {
  17. if (document.obrazki.wybor.selectedIndex == 0 )
  18. {
  19. document.getElementById('obr').innerHTML = "<img src=\"RYSUNKI/CD.JPG\">";
  20. }
  21. if (document.obrazki.wybor.selectedIndex == 1 )
  22. {
  23. document.getElementById('obr').innerHTML = "<img src=\"RYSUNKI/horn.JPG\">";
  24. }
  25. if (document.obrazki.wybor.selectedIndex == 2 )
  26. {
  27. document.getElementById('obr').innerHTML = "<img src=\"RYSUNKI/tour.JPG\">";
  28. }
  29. }
  30. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement