Advertisement
Guest User

Untitled

a guest
Oct 24th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1.  
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. </head>
  6.  
  7. <form name="selectForm">
  8. <p>
  9. <label for="musicTypes">Wybierz ulubione gatunki muzyki: </label>
  10. <select id="musicTypes" name="musicTypes" multiple="multiple">
  11. <option selected="selected">Rege</option>
  12. <option>Jazz</option>
  13. <option>Blues</option>
  14. <option>New Age</option>
  15. <option>Classical</option>
  16. <option>Opera</option>
  17. </select>
  18. </p>
  19. <p><input id="btn" type="button" value="Ile gatunków wybrano?" /></p>
  20. </form>
  21.  
  22. <script>
  23. function howMany(selectObject) {
  24. var numberSelected = 0;
  25. for (var i = 0; i < selectObject.options.length; i++) {
  26. if (selectObject.options[i].selected) {
  27. numberSelected++;
  28. }
  29. }
  30. return numberSelected;
  31. }
  32.  
  33. var btn = document.getElementById("btn");
  34. btn.addEventListener("click", function(){
  35. alert('Ilość zaznaczonych obiektów ' + howMany(document.selectForm.musicTypes))
  36. });
  37. </script>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement