20_下拉列表.html 777 B

123456789101112131415161718192021222324252627282930
  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. <title>Document</title>
  7. <style>
  8. select{
  9. width: 100px;
  10. height: 200px;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <select id="sel" multiple>
  16. <option value="one">one</option>
  17. <option value="two">two</option>
  18. <option value="three">three</option>
  19. </select>
  20. <script>
  21. var oSel = document.getElementById("sel");
  22. console.log(oSel.options);
  23. oSel.onclick = function(){
  24. console.log(oSel.selectedOptions);
  25. console.log(oSel.selectedIndex);
  26. console.log(oSel.options[1].selected);
  27. }
  28. </script>
  29. </body>
  30. </html>