Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Igrice</title>
  5.    
  6.  
  7.    
  8. </head>
  9. <body>
  10.     <script type='text/javascript' src="3.js"> </script>
  11.     <div>Dobro dosli</div>
  12.     <div id="div_1">Odaberite igricu koju zelite:</div>
  13.     <select id="odabir"></select>
  14.     <script>
  15.         var div_1=document.getElementById("div_1")
  16.         var opcije=["PRVA IGRA","DRUGA IGRA"]
  17.         var selectList = document.getElementById("odabir");
  18.          div_1.appendChild(selectList);
  19.    
  20.         for (var i = 0; i < opcije.length; i++) {
  21.            var option = document.createElement("option");
  22.            option.value = opcije[i];
  23.            option.text = opcije[i];
  24.            selectList.appendChild(option);
  25.            }
  26.            selectList.selectedIndex=1;
  27.  
  28.    </script>
  29.    
  30. <script src="3.js"></script>
  31. <button type="button" onclick="igra(selectList.value)">Zaigraj odabranu igru :)</button>
  32.  
  33.    
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement