whiplk

[EXAMPLE] alert() - prompt()

Mar 1st, 2012
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //alert() - prompt();
  2. <html>
  3.     <title></title>
  4. <head>
  5. <script type="text/javascript">
  6. var wii = prompt("JavaScript", "Digite 1 ou 2");
  7. if(wii == 1) alert("VocĂȘ digitou 1");
  8. if(wii == 2) alert("VocĂȘ digitou 2");
  9.  
  10. </script>
  11. </head>
  12. </html>
Advertisement
Add Comment
Please, Sign In to add comment