Facebook
From Unique Lechwe, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 259
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <title>Document</title>
  8.     <script src="onchange.js"> </script>
  9. </head>
  10. <body>
  11.         <img id="image" src="1.jpg" alt="obrazek" height="200px" width="200px">
  12.         <select onchange="selectImg()" id="selectImage">
  13.                 <option value="1.jpg">Obrazek1</option>
  14.                 <option value="2.jfif">Obrazek2</option>
  15.                 <option value="3.jpg">Obrazek3</option>
  16.                 <option value="4.jpg">Obrazek4</option>
  17.                 <option value="5.jpg">Obrazek5</option>
  18.               </select>
  19.               <button><a href="./strona.html">Strona Głowna</a></button>
  20. </body>
  21. </html>
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30. function selectImg(){
  31.     var select = document.getElementById("selectImage");
  32.     var image = document.getElementById("image");
  33.     image.src = select.value;
  34. }