Guest User

Untitled

a guest
Apr 25th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. </head>
  6. <body>
  7. <fieldset><legend>Escolha</legend>
  8. <select>
  9. <optgroup label="Decimal" onclick="f_decimal()">
  10. <option onclick="carro()">Carro</option>
  11. <option onclick="moto()">Moto</option>
  12. </optgroup>
  13. </select>
  14. </fieldset>
  15. <script>
  16. function carro(){
  17. alert("Você escolheu carro.")
  18. }
  19. function moto(){
  20. alert("Você escolheu moto.")
  21. }
  22. </script>
  23. </html>
Add Comment
Please, Sign In to add comment