Advertisement
Le-Ownect

Coisa que não sei

Aug 24th, 2013
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3. <script>
  4. function disp_prompt()
  5.   {
  6.   var fname=prompt("Please enter your name:","Your name")
  7.   document.getElementById("msg").innerHTML="Greetings " + fname
  8.   }
  9. </script>
  10. </head>
  11. <body>
  12.  
  13. <input type="button" onclick="disp_prompt()" value="Display a prompt box">
  14. <br><br>
  15.  
  16. <div id="msg"></div>
  17.  
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement